vote up 5 vote down star
2

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?

flag

6 Answers

vote up 9 vote down check

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|flag
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 at 9:44
I'm glad to know this thread is still helping folks. =-) – Gabe Hollombe Sep 3 at 0:36
vote up 2 vote down

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|flag
vote up 6 vote down

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|flag
vote up -1 vote down

thanks for your help. It was also top on google's list.

link|flag
Consider using the comment feature for, well, comments as opposed to answers. – edoloughlin Nov 24 at 10:07
vote up 0 vote down

Where is this menu!? Take a whole screenshot so I can find it, not just of the menu...

link|flag
vote up 0 vote down

No Vodoo 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|flag

Your Answer

Get an OpenID
or

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