Hi,
we develop and distribute several enterprise app. Most of them are stable products so we don't need to make any change or any new release during the year.
Every year, before the provisioning profile expiration, we use a resign script like this one:
unzip ./$IPA_NAME"_toresign.ipa"
rm -r "./Payload/$APP_NAME/_CodeSignature"
/usr/bin/codesign -d --entitlements :entitlements.plist "./Payload/$APP_NAME"
/usr/bin/codesign -f -s "$CERTIFICATE_NAME" --no-strict --entitlements ./entitlements.plist "Payload/$APP_NAME"
zip -qr "./$IPA_NAME.ipa" ./PayloadThis year this procedure didn't work and the one of the "resigned app" was unable to start after the expiration date
Is there something no more valid in this procedure?
Thank you
Andrea