Is it possible and how to grab that information about profile just from existing *.ipa file?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
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.
Use Nomad.
Below are step for getting profile details from an IPA file :
IPA
toZIP
. This will prompt an alert whether to keep .ipa or use.zip. Go withUse .zip
optionIPA
toZIP
fileSomething like the following dumps an xml version of the provisioning profile:
Replace
<ipafile>
and<myapp>
accordingly. If you don't know what<myapp>
should be, try: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
toembedded.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!