vote up 4 vote down star
2

My iPhone app runs fine in the simulator. I'm trying to deploy it onto a physical iPhone. When I install the provisioning profile, my Organizer says "A signing identity matching this profile could not be found in your keychain."

I can't resolve this. What do I do?

flag

7 Answers

vote up 5 vote down

A) Did you create a provisioning profile in the iPhone development portal?

B) If so, does the name in the info.plist file match the appID you created in the portal and used to create that development profile (that is, if you had created an app id of "com.fredsgreatstuff.*" in the info.plist you'd replace "com.mycompany" with "com.fredsgreatstuff")

C) Did you set PRODUCT_NAME in the project settings for all targets (to something like "mygreatapp")

From the look of the error though you must have got the development cert wrong, or not downloaded the certificate from the portal generated after you uploaded your developer signing request.

The portal has pretty good instructions at this point (that didn't used to be the case), be very careful to follow every step to the letter.

link|flag
I also followed all the steps. But this is a mystery to me as well. – tim Nov 10 at 18:41
vote up 1 vote down

Make sure you have your developer certificate installed on the machine, AND that your private key installed with it. You can check this in the Keychain Access tool in your Utilities folder. The cert should expand to a private key icon with your name on it.

link|flag
vote up 0 vote down

Got exactly that Problem. My cert doesn't expand to a private key icon with my name on it.

How can i append a private key?

link|flag
vote up 3 vote down

Make sure you've downloaded your certificate from the program portal. Double-click on it to create a private-public key pair in Keychain Access. The private key will be created when you download the cert and double-click on it.

If it does not, you might have to delete the certificate and create a new one. Make sure the in the certificate signing request you create, your name is exactly as you've mentioned in the portal.

link|flag
vote up 0 vote down

i have downloaded it from the: program portal > certificates > development

it doesn't help, so i deleted the cert in the keychain. Downloaded it again from ProgPortal > 2clicked: developer_identity.cer
this creates a new certificate in the keychain - BUT without the expandable line private key

i did the same in program portal > certificates > distribution - and it worked fine ! Now i can find a "iPhone distribution: name" certificate WITH the expandable line private key. So it looks for me that the downloadable file "developer_identity.cer" doesn't contain the key !? Can/should i remove the Development certificate from program portal? and redo the process? i couldn't find any info on deleting a cert from portal.

link|flag
Try doing it from the start (creating a cert signing request that is). Thats what most of the people suggest even on blogs (its frustrating!) Also make sure you can see the provisioning profile installed on your phone (can be seen in XCode->Window->Organizer) – lostInTransit Jan 27 at 15:36
If its not there, you might not have added the provisioning profile to your phone. Drag the .mobileprovision file to xcode for doing that or manually copy the file to Library/MobileDevice/Provisioning Profiles – lostInTransit Jan 27 at 15:37
vote up 1 vote down

It might be that the "keychain" into which you installed your certificate is not currently set as your "default keychain". I had the same (or very similar problems) when my default keychain was somehow switched to a different default.

Open Keychain Access (Applications -> Utilities -> Keychain Access)

On the top left list box called "Keychains" make sure the keychain into which you installed your developer certificate (usually "login") is still bold (ie: set to the default keychain).

You can set the default keychain by right (or control) clicking on the keychain you want ("login" for example) and selecting the "Make Keychain 'xxx' Default".

Cheers.

link|flag
vote up 1 vote down

Here is a really good website with a checklist on troubleshooting code signing errors:
http://www.drobnik.com/touch/2009/05/how-to-fix-code-signing-errors/

Most of its content is covered by the posts above, but it is easier to work through.

FTR, I hit the same problem that Genericrich pointed out - my Development Profile didn't have the private key, but my Distribution one did. As a workaround I just defined my Debug build to also use the Development Profile.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.