Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone Config Utility - show all devices in a provisioning profile

Tags:

xcode

iphone

In both XCode and the iPhone Configuration Utility, there is a Provisioning Profiles item that shows at most 2 devices in a provisioning profile. It also says "8 other devices".

  • What are those devices?

Is there any convenient way to find out what those other 8 are (without going back to the provisioning portal?)

enter image description here

like image 559
Rayfleck Avatar asked Apr 21 '11 01:04

Rayfleck


People also ask

How do I find provisioning profiles on my iPhone?

The easiest way to manage the provisioning profiles on the iPhone is to open Xcode and select the menu item "Devices and Simulators" in the Window menu. Right-click on your iPhone XS and select "Show provisioning profiles". You'll then be able to see the installed profiles, add new ones and delete existing profiles.


2 Answers

Just open the .mobileprovision file in a text editor. You will see all the UDIDs under ProvisionedDevices key.

like image 162
Vibhor Avatar answered Oct 07 '22 06:10

Vibhor


I wrote a small program that shows all installed provision profiles and its devices. Application and source code are available from here

https://github.com/pigmasha/MAProvisions

Application features

  • view all provision profiles installed on your computer
  • select any profile and see its information and its devices list
  • you can add names for your devices UDIDs
  • objective-c note: all controls created programmatically (no .nib, .xib or .storyboard files)

Suggestions will be well received

like image 25
pigmasha Avatar answered Oct 07 '22 07:10

pigmasha