Given a provisioning profile, does anyone know how to determine what UDIDs are in that profile?
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
Another QuickLook plug-in I use is ProvisionQL.
https://github.com/ealeksandrov/ProvisionQL
It provides the QuickLook feature for provisioning profiles!
Check out more screenshots for how it work: https://github.com/ealeksandrov/ProvisionQL/blob/master/screenshots.md
To see which iOS device UDID's are associated to your provisioning profile, use the Terminal command:
(drag and drop the .mobileprovision file from Finder to the Terminal window to fill in the file path)
Within the command results look for the ProvisionedDevices section for the device UDIDs associated to the profile, such as:
Open it up in a text editor. You should be able to see the list of UDID's.
They appear under the key "Provisioned Devices".
Sorry for the auto-plug that follows - I'm the author of the mentionned plugin, but felt it was an appropriate answer to this question.
I wrote a QuickLook plugin just for this need.
It gives you a sorted list of all the UDIDs in the profile. When it knows more about a specific UDID, it will allow you to display a pop-up to get more information about the device.
It is also an easy way to get access to other useful informations about the profile: creation and expiration date, App ID, profile name...
Download it here.