Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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?

like image 832
Alex Stone Avatar asked Aug 15 '14 14:08

Alex Stone


2 Answers

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

like image 93
user774150 Avatar answered Oct 14 '22 18:10

user774150


@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.

like image 36
Aditya369 Avatar answered Oct 14 '22 16:10

Aditya369