Code Sign error: The identity 'iPhone Developer' doesn't match any valid certificate/private key pair in the default keychain

link|improve this question

53% accept rate
3  
Just repeating the title as the question probably isn't going to make people want to help you ;) Have you ever been able to sign an app before or is this the first time you have seen this error? – deanWombourne Jan 21 '10 at 11:44
None of this works... Any idea ? – Rabskatran Mar 31 '11 at 10:41
it works read the comment below meaning answer – Pinky May 25 '11 at 7:08
Pulling out my hair on this as none of these work. Running xCode 4.1 and upgraded to 4.2 with no change in the error – Phill Pafford Oct 18 '11 at 2:21
@deanWombourne : have the same error message and nothing more. Any way to get more verbosity from code signing tool? And what is this tool anyway? – Artem Oboturov Oct 21 '11 at 10:55
show 1 more comment
feedback

8 Answers

up vote 23 down vote accepted

This happens if you forgot to change your build settings to Simulator. Unless you want to build to a device, in which case you should see the other answers.

link|improve this answer
It works well but, to upload app to appstore we have select "Build for Archive" that time I getting the above error please help me – Vineesh TP May 2 at 11:22
Try rebuilding all your keychain certificates. It sounds like you're missing the all important key. – sudo rm -rf May 2 at 15:25
feedback

I 'tripped' across my solution after 2 days...XCODE 4.0

I've just upgraded to XCode 4.0 and this code signing issue has been a stunning frustrastion. And I've been doing this for over a year various versions...so if you are having problems, you are not alone.

I have recertified, reprovisioned, drag and dropped, manually edit the project file, deleted PROVISIIONING paths, stopped/started XCODE, stopped started keychain, checked spelling, checked bundle ID's, check my birth certificate, the phase of the moon, and taught my dog morse code...none of it worked!!!!

--bottom line--- 1. Goto Targets...Build Settings tab 2. Go to the Code Signing identity block - Check Debug AND Distribution have the same code signing information ..in my case "IPhone Distribution:, dont let DEBUG be blank or not filled in.

If the Debug mode was not the same, it failed the Distribution mode as well...go figure. Hope that helps someone...

link|improve this answer
+1 That helped a lot. Thanks! – Jack Humphries Nov 12 '11 at 3:01
That was exactly my problem. Thanks for taking the time to type this up! – bbrame Nov 18 '11 at 20:34
Perfect answer, thanks! – jeremib Nov 22 '11 at 20:34
feedback

Check if you are building for device instead of simulator. Go to Xcode menu 'Project' -> 'Set Active SDK' change from 'Device' to 'Simulator'

Under Xcode 4.1 Check your build settings for the project and your targets. For each check under 'Code Signing' check 'Code Signing Identity' and change over to 'Don't Code Sign'

link|improve this answer
feedback

This usually happens to me when I forget to change the company to match mine.

  1. Select the target under Groups & Files
  2. Click the Get Info button
  3. Choose the Properties tab
  4. Under Identifier, make sure it says com.YOURREALCOMPANYNAME.APPNAME

When you create a new app, it usually says, "com.yourcompany". Change it to whatever you registered with, in my case com.DavidKanarek

link|improve this answer
"What you registered with" Does that mean the apple id you used to register? – Jonathan Jun 25 '11 at 21:07
Your distribution profile should say com.SOMETHING on Apple's provisioning site. – David Kanarek Jul 6 '11 at 18:04
feedback

I had the same problem. I'm very new to iphone development and it was my first time trying to load my program onto my iphone. The message is correct, you need to create a certificate in the keychain. The best walkthrough is here:

http://developer.apple.com/ios/manage/overview/index.action

You of course need to have a developer account (need to have paid the $100 yearly fee).

I hope this helps.

link|improve this answer
feedback

In XCode 4.0 main workspace, at the top left side & just after the "Stop Button", there is scheme selector, click on it and change your scheme to IPhone Simulator. That's it

link|improve this answer
feedback

if you are just using the simulator and just upgraded then this solved the issue for me: go to menu->project-edit project setting. find code signing section (you can type 'code' in the quick search) in the code signing identity select 'any sdk' and set the value to 'Don't Code Sign'

link|improve this answer
feedback

When I had this problem, the issue was I did not have the private key necessary for the developer certificate to be valid.

The solution was:

  1. Have the developer who created the certificate export their private key matching the iOS developer public key. see http://developer.apple.com/ios/manage/certificates/team/howto.action

  2. Open this file (Certificates.p12) on your machine (with KeyChain), and enter the password the other developer used when exporting. It is now imported into your KeyChain.

  3. Now connect iOS device and rebuild targeting the iOS device.

link|improve this answer
This did the trick for me... – Muncken Feb 19 at 13:18
feedback

Your Answer

 
or
required, but never shown

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