For future readers: It was even simpler than I remember. The architecture used was armeabi-v7a. All you need to do is search for the error message("Failed to verify") in IDA, then in the graph view you'll notice only one incoming red arrow to this block of code. Double click it to get to the code that it branched from, which should be a BEQ(branch if equal) with the error message on it's negative path. Since we always want to always branch to the positive side we need to change this to B(unconditional branch). Right click the BEQ and make sure synchronize with hex view is on, then switch over to hex view. The highlighted piece should be 12 00 00 1A. Write down the offset and open the .so file in a hex editor, go to the offset you've written down(in this case it was 12FF28 from the top of my head), you'll see the same 12 00 00 1A. Change the 1A to EA, save and verify your change in IDA. It should now be an unconditional branch, leaving you free to modify files to your hearts content.