Last active
April 24, 2024 09:14
-
-
Save seanhenry/a5deddc7af4bbb6ac6d49d27101c3654 to your computer and use it in GitHub Desktop.
Resign an ipa and change the build number
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
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
The CERTIFICATE refers to the SHA1.