Last active
October 15, 2019 06:03
-
-
Save andrewwoz/44f7e86cc8d7f3e04400f8b4697995e4 to your computer and use it in GitHub Desktop.
[Inspect entitlement for .ipa archive] #codesign
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
# to check the entitlements of the .ipa: | |
# 1. Find the .ipa file and change its the extension to .zip. | |
# 2. Expand the file .zip. This will produce a Payload folder containing your .app bundle. | |
# Use the `codesign` tool to check the entitlements on the .app bundle | |
$ codesign -d --entitlements :- "Payload/YourApp.app" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment