Alex Stone
Alex Stone

Reputation: 47354

How can I add a device to development portal in Xcode 6?

I see that Xcode6 has removed the "Devices" tab from the organizer and moved it to a separate "Devices" tab in Window > Devices.

I do not see an option for "Add device to Member Center" from the Devices screen or the Devices > Provisioning Profiles screen.

How can I add a device to Member Center and thus get the correct provisioning profiles installed in Xcode 6?

Upvotes: 23

Views: 21935

Answers (5)

parliament
parliament

Reputation: 22954

My first time using XCode and apparently starting from version 6 they moved the creation of provisioning profile the developer.apple.com website. There you can register your device using the UUID you can find in XCode > Window > Devices for your phone. Then create an App ID and then a provisioning profile which you can then download from the website. Double clicking the downloaded file should add it to XCode > Windows > Devices > Show Provision Profiles.

Upvotes: 0

ghostatron
ghostatron

Reputation: 2650

Another reason you might have trouble adding a new device is that you have reached your limit (100) on the number of devices you are allowed to register.

Upvotes: 0

Aditya369
Aditya369

Reputation: 834

@SeniorShizzle I think that the reason that it's showing like that for you is because your phone is running on a version lesser than the Deployment Target set in your app (Xcode -> YourAppName -> General).

Sorry that I couldn't reply as a comment btw. I'm not allowed to do that yet.

Upvotes: 3

user774150
user774150

Reputation: 1072

In your build settings, set your provisioning profile to automatic. Code signing identity to automatic as well.

In some cases the xCode tries to fix both the main target and the "tests" target, but fails to properly sign the tests target. In such case, for demos downloaded from the internet, I just delete the tests target.

enter image description here

Upvotes: 19

taesoo.kim
taesoo.kim

Reputation: 21

I found the solution. Delete 'iOS Team provisioning profile:*' in iPhone configuration utility.

and try to run app then you could see fix issue.

Upvotes: 2

Related Questions