Skip to content

Instantly share code, notes, and snippets.

@b099l3
Created April 18, 2017 17:05
Show Gist options
  • Save b099l3/07bd348fabfe31eac09b487c976acac4 to your computer and use it in GitHub Desktop.
Save b099l3/07bd348fabfe31eac09b487c976acac4 to your computer and use it in GitHub Desktop.
You can check the entitlements needed by your app using the following command in Terminal. When you unzip your .ipa file, you will get the Payload folder. Navigate to the same directory the Payload folder is in before executing the command:
>codesign -d --entitlements :- "Payload/YourApp.app"
Then, you can check what entitlements are included in the provision with
>security cms -D -i "Payload/YourApp.app/embedded.mobileprovision"
This output can help show where the mismatch is.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment