-
-
Save eldorplus/bd4eb07a38a26ffabb558957827ff1a8 to your computer and use it in GitHub Desktop.
Resign an ipa and change the build number
This file contains hidden or 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
APPNAME=App | |
BUILDNUMBER=123 | |
CERTIFICATE="iPhone Distribution" | |
cp "${APPNAME}.ipa" "${APPNAME}.zip" | |
mkdir contents || true | |
unzip "${APPNAME}.zip" -d contents | |
codesign -d --entitlements :Entitlements.plist "contents/Payload/${APPNAME}.app" | |
plutil -replace CFBundleVersion -string "${BUILDNUMBER}" "contents/Payload/${APPNAME}.app/Info.plist" | |
rm -r "contents/Payload/${APPNAME}.app/_CodeSignature" | |
xattr -cr "contents/Payload/${APPNAME}.app" | |
codesign -s "$CERTIFICATE" -f --entitlements Entitlements.plist "contents/Payload/${APPNAME}.app" | |
cd contents | |
zip -qr "../${APPNAME}_Resigned.ipa" * | |
cd .. | |
rm -r contents | |
rm Entitlements.plist | |
rm "${APPNAME}.zip" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment