This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's what you do! | |
1. Terminal: Unzip the ipa (it's just a zip file after all) | |
unzip -q App.ipa | |
1a, You will need to have the entitlements file, this information is needed during signing. | |
codesign -d --entitlements :- "Payload/App.app" | |
2. Terminal: This will produce a `Payload/` directory. Remove the existing code signature. | |
rm -rf Payload/App.app/_CodeSignature |