Skip to content

Instantly share code, notes, and snippets.

@eldorplus
Forked from seanhenry/resign.sh
Created January 27, 2021 09:09
Show Gist options
  • Save eldorplus/bd4eb07a38a26ffabb558957827ff1a8 to your computer and use it in GitHub Desktop.
Save eldorplus/bd4eb07a38a26ffabb558957827ff1a8 to your computer and use it in GitHub Desktop.
Resign an ipa and change the build number
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