The app bundle contains a digital signature, which indicates that the app bundle came from you and hasn't been tampered with since you created it.
For your app to find and read the config file, it must be inside the app bundle. If you change a file inside the bundle (or just add a file to the bundle), the signature will no longer be valid, and iOS will refuse to execute your program.
Therefore, in order to do this, you must sign the app bundle again after you change the config file. That means a user cannot edit the config file himself, you must provide the customized versions for him. (Or he must have the developer tools and a valid signing certificate installed.)
So the steps are:
- Unzip the IPA file.
- Change the config file.
- Use the
codesign command line utility to update the digital signature.
- Recreate the IPA using
zip -y (to preserve symlinks).