Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 4.3 - error: no identities were available

Tags:

xcode4.3

Please, help me. I would like to put an App in the IOS App Store but always receive this error message (Xcode4.3)

"No identities are available for signing" Connect to IOS Center, Xcode can obtain identities from the IOS Dev Center...

What do I make wrong??

like image 871
Roland Avatar asked Mar 04 '12 14:03

Roland


2 Answers

When you have your project open in Xcode there's a section called Code Signing. Click the first drop-down menu and you should see a list of identities, you should see at least one iPhone Developer and iPhone Distribution identity. If you don't an iPhone Distribution identity, or it is under the "identities without Provisioning profiles" subheading, you can resolve this in iOS Dev Center.

Go to iOS Dev Center > iOS Provisioning Portal > Provisioning > Distribution. You could have an expired profile, if so just modify and re-save it. If there is no profile then click New Profile. Then you should see the new iPhone Distribution identity in Xcode which you can now choose.

like image 56
Andrew Avatar answered Sep 29 '22 15:09

Andrew


For me, it was the bundle identifiers that conflicted. Make sure the bundle identifier specified in Xcode > Targets > Info > Bundle Identifier matches the one you registers as App Id in IOS Dev Center > Provisioning Portal > App Ids. Hint can be found in Xcode > Targets > Build Settings > Code Signing, you just need to make the bundle identifiers match.

like image 34
Arbie Samong Avatar answered Sep 29 '22 13:09

Arbie Samong