When building a new iPhone app in Xcode, I'm getting this error:

codesign error: code signing identity 'iphone developer' does not match any code-signing certificate in your keychain. once added to the keychain, touch a file or clean the project to continue.

What's the fix?

link|improve this question

79% accept rate
feedback

8 Answers

up vote 54 down vote accepted

The fix is pretty simple. In the Build Results window (which you probably got to by clicking the error icon in the lower right corner of your project window), change the pulldown menu from ‘Device - iPhone xxx’ to ‘Simulator - iPhone xxx’.

xcode-screenshot

link|improve this answer
Answering my own question because I think this will help others. – Gabe Hollombe Dec 30 '08 at 17:20
Thanks Gabe, I got the same error after upgrading to SDK 3.0 and spent waaaay too much time trying to fix it – Liam Sep 1 '09 at 9:44
3  
I'm glad to know this thread is still helping folks. =-) – Gabe Hollombe Sep 3 '09 at 0:36
It's still helping, my man, still helping. – Jack BeNimble Feb 14 '11 at 18:26
Thanks a lot... That saved my frustration. Just learning the whole thing I have spent hours to try to compile my code... – xebo May 6 at 9:12
feedback

You need to be part of the $99 developer program to test on the actual phone. Apple should have info about how to sign your code once you're accepted into the program.

link|improve this answer
1  
That's $99 per year, not just $99 :) – olafure Apr 19 at 16:08
feedback

I got this error when I accidentally modified the code signing identity build setting at the target rather than the project level. Make sure that you have the correct information entered at the project level (get info on the project, rather than the target.) If you changed the target build settings, try deleting the values from there. The target will then inherit the project's setting.

I would also do a "clean all", then exit xcode, delete everything from the build folder and try to do another build. (This is an Xcode voodoo trick that seems to solve many code signing issues.)

link|improve this answer
I was getting this error too, and was mistakenly selecting the Target instead of the Project. Selecting the Project and updating the Signing Cert there fixed the problem. – Sophtware Mar 19 '10 at 13:38
I did the reverse: Kept changing the Project settings and Clean All with no results. Then I edited the Active Target, Set the proper Code Signing Identity of the Distribution Profile (duped from Release Profile). That did the trick. Thanks @lajos! – willc2 Apr 12 '10 at 12:06
feedback

I just solved my code signing problem. What a nightmare! Over 8 hours of frustration over two days. I tried new apps, new app names, new certificates, deleting provisioning profiles etc. Basically I had two "iPhone Distribution" certificates in my keychain causing all code signing to fail. But one was hidden! The visible cert was in my Login keychain. The invisible cert was in my System keychain. Be warned, add your certificate to either keychain but not both! I deleted the certificate from the System keychain and it became a ghost certificate. It no longer appears in the System keychain "Keychain Access" tool but it did exist in the actual System keychain file, so effectively it had not been removed. I grepped the keychain file for the word Distribution and there it was! My solution was to remove that line containing iPhone Distribution from the keychain file which fixed the code signing. The result is I have a broken System keychain. But I can sign apps again \m/

link|improve this answer
feedback

this may sound funny, but I searched everywhere for a solution. Eventually I found out that in Xcode in the top left, the dropdown where you select Device and verison, I had "debug" selected in the dropdown instead of release. Once I selected release the problem was fixed.

link|improve this answer
feedback

I had the same problem. Found the fix here:

http://www.iphonedevsdk.com/forum/iphone-sdk-tools-utilities/14909-help-certificate-s-t.html

In Keychain Access.app my Developer Certificate would show up as "This certificate was signed by an unknown authority". The reason was that I didn't have the ADC intermediate certificate (which you can download from "Provisioning Program" in "Certificates" tab. Once I installed this the developer certificate showed up correctly in keychain and my code could be deployed on the bloody phone.

link|improve this answer
feedback

This situation is happening when you receive a Xcode project from other person.

Here is what I did to solve the problem.

  1. Register your key in a key chain access. You can download your key in iOS provisioning portal. (Application -> Utility -> Keychain Access)
  2. Install Provisioning file for the app.
  3. Change iPhone developer in a project configuration. (Target Info -> Build tap -> Code Signing -> Code Signing Identity and Any iOS)
link|improve this answer
What do you mean "Build tap"? – yourfriendzak Apr 11 at 23:17
feedback

No Voodoo necessary. Sometimes some app changes default keychain and Xcode stops finding iPhone Developer Keys. The solution is simple (it worked for me):

  1. List item Start Keychain Access app
  2. Ctrl+click on keychain where you stored your development keys and select Make Keychain Default
  3. Enjoy developing great iPhone apps.
link|improve this answer
feedback

protected by Jeff Atwood Nov 10 '10 at 5:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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