Reputation: 14314
Is it possible and how to grab that information about profile just from existing *.ipa file?
Upvotes: 82
Views: 49296
Reputation: 36447
Below are step for getting profile details from an IPA file :
IPA
to ZIP
. This will prompt an alert whether to keep .ipa or use.zip. Go with Use .zip
optionIPA
to ZIP
file Upvotes: 3
Reputation: 1723
Go to your Xcode organizer and click on the archives.You can see the list of archives you have made. Clicking on it will show you the details like date of creation, identifier etc. You can find the profile you created for this by matching this identifier you got.
Upvotes: 0
Reputation: 7644
I can give you a direction in this, not sure if it'll actually help:
*.ipa
file to *.zip
.*.app
file. Open its package contents by right clicking it.embedded.mobileprovision
file.EDIT- Since Xcode 6 doesn't show the provisioning profile, I'll extend the answer to still see the details:
embedded.mobileprovision
to embedded.txt
or just open it with any text editor of choice.Entitlements
, CreationDate
, ExpirationDate
, Name
, etc which will be sufficient to conclusively lead you to the provisioning profile used to create the .ipa
.Hope it'll help!
Upvotes: 142
Reputation: 2044
Something like the following dumps an xml version of the provisioning profile:
unzip -p <ipafile>.ipa Payload/<myapp>.app/embedded.mobileprovision | security cms -D
Replace <ipafile>
and <myapp>
accordingly. If you don't know what <myapp>
should be, try:
unzip -l <ipafile>.ipa | grep mobileprovision
Upvotes: 13
Reputation: 4594
Use Nomad.
$ ipa info /path/to/app.ipa
+-----------------------------+----------------------------------------------------------+
| ApplicationIdentifierPrefix | DJ73OPSO53 |
| CreationDate | 2014-03-26T02:53:00+00:00 |
| Entitlements | application-identifier: DJ73OPSO53.com.nomad.shenzhen |
| | aps-environment: production |
| | get-task-allow: false |
| | keychain-access-groups: ["DJ73OPSO53.*"] |
| CreationDate | 2017-03-26T02:53:00+00:00 |
| Name | Shenzhen |
| TeamIdentifier | S6ZYP4L6TY |
| TimeToLive | 172 |
| UUID | P7602NR3-4D34-441N-B6C9-R79395PN1OO3 |
| Version | 1 |
+-----------------------------+----------------------------------------------------------+
Upvotes: 36