Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding devices to team provisioning profile

This worked for me:

  1. Login to your iPhone provisioning portal through https://developer.apple.com
  2. Add the UDID in devices
  3. Go back to Xcode, open up the Organizer and select "Provisioning Profiles", ensure that "Automatic Device Provisioning" is checked on the top right pane, then click on the "Refresh" button, and magically all your devices set in the provisioning portal will be automatically added.

right click on the device, then select 'add device to provisioning profile'


For Xcode 6 it is a little different.

After adding the device UDID in the developer site (https://developer.apple.com/account/ios/device/deviceList.action), go back to Xcode.

Xcode -> Preferences -> Accounts Select the Apple ID you added the device under and in the bottom right, click "View Details..."

Hit the refresh icon on the bottom left and then try to run the app again.


Per May 16th 2013, using XCode 4.6.2, I had to do the following to add a device (which I do not have physical access to) to the team provisioning profile:

  1. Login to the provisioning portal through developer.apple.com
  2. Add the UDID in Devices
  3. Select the Team Provisioning profile in Provisioning Profiles
  4. Click the Edit button
  5. And under devices for that provisioning profile, click Select All, or just the devices you want included.
  6. Click Generate
  7. Then go back to XCode and click refresh icon (bottom right) under Organizer -> Devices -> Provisioning Profiles

Sometimes it takes a while before the certificate is updated and fetched from XCode.

Hope this helps new readers.