Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 5 Provisioning Profiles Not Available

I cannot access any of the provisioning profiles or code signing identities that I've created in the project settings. It's not that I haven't downloaded the provisioning profiles, or have the correct certificates installed, but there is nothing that appears in the provisioning profile key in the project settings:

Notice there is no drop-down available for Code Signing Identity either

Again, I have made sure to import the provisioning profiles and certificates correctly. Here's how my account appears in Preferences > Accounts:

All provisioning profiles, including wildcard profile, are on my local machine

I'm running out of ideas. I've revoked my existing certificates, deleted all provisioning profiles, and recreated everything again.

I also created a dummy project from Apple's included iOS Master-Detail template. That exhibited the same behavior where no code signing identities or provisioning profiles were available from the project build settings.

I'm pretty open to all ideas. Thanks.

Update

As I mentioned, the code signing drop downs don't appear either, even though they have been properly created and downloaded through Preferences / Accounts.

enter image description here

like image 644
Daniel Larsen Avatar asked Dec 02 '22 17:12

Daniel Larsen


2 Answers

Nothing is wrong. The solution is simple: Go to Editor -> Show values

Xcode will show all the options after this.

like image 197
Gudus Avatar answered Dec 14 '22 13:12

Gudus


Your provisioning profiles doesn't list out in your project setting because, provisioning profile doesn't match with your bundle identifier.

1) Check your bundle identifier to list out provisioning profile as like below picture. Because It also lead to this problem.

enter image description here

2)You may not using the correct certificates when building your app. Just Delete your certificates in Provisioning Portal and create new ones and update them in Xcode.

3) From above description, you didn't correct bundle identifier. Goto Organizer / Provisioning Profiles / Refresh and allow Xcode to fetch the latest ones. Then provisioning profile will show as like below

Select correct Provisioning profile. enter image description here

like image 34
Mani Avatar answered Dec 14 '22 12:12

Mani