Dipen Chudasama
Dipen Chudasama

Reputation: 3093

Xcode does not display the list of provisioning profiles

I have some issue with Xcode 6.3, in below image you can show that there is and no selection provided to select provisional profile name or application ID like (Automatic, or any other app Id name) and also not able to get list of provisional profiles which was available. How can I resolve this?

enter image description here

Currently I am set provisional profile name manually like below.

enter image description here

Upvotes: 15

Views: 8256

Answers (5)

thomiel
thomiel

Reputation: 2937

For me it was solved by having the account owner login to the apple developer account and agree to changed Apple Developer Licensing Agreement. I can't imagine a reason why Apple doesn't show any message why the provisioning profile couldn't be imported.

Upvotes: 0

Paul
Paul

Reputation: 1159

First go to Xcode > Preferences:

enter image description here

Login with the developer account with the profiles you are trying to get to show up. When you do, highlight the account and press "View Details":

enter image description here

After that, press the refresh button to make sure your profiles are there. Then go back to Code Signing in Xcode. Your profiles should show up.

enter image description here

Upvotes: 13

Vikas Dadheech
Vikas Dadheech

Reputation: 1720

The problem is that you don't have the certificate's private key installed in your system.

You need to follow these steps:

  • Whichever certificate it is, whether it is developer or distribution certification, which you are using for you application, install the private key of that certificate on to you system.
  • Install the provisioning profile.
  • The certificates will be now visible in the drop down of "Code Signing Entity"
  • Select you certificate

Now you provisioning profile will be visible in the profile's drop down.

Please make sure that profile is created with the same certificate.

Upvotes: 0

Tejas Ardeshna
Tejas Ardeshna

Reputation: 4371

follow steps below

1)xcode -> preference -> accounts

click on account name -> view details(on right side) http://prntscr.com/7z4nve you can see like this and click on refresh button below left side

hope works

Upvotes: 0

Nilesh Patel
Nilesh Patel

Reputation: 6394

Add your developer account in team section.

You can find team section in Project Target Options.

Once you will add it, hopefully you will get everything in build setting.

Upvotes: 0

Related Questions