Xcode: iPhone app codesign error - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T17:43:44Zhttp://stackoverflow.com/feeds/question/400894http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error6Xcode: iPhone app codesign errorGabe Hollombe2008-12-30T17:19:13Z2009-12-16T20:05:49Z
<p>When building a new iPhone app in Xcode, I'm getting this error:</p>
<blockquote>
<p>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.</p>
</blockquote>
<p>What's the fix?</p>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/400898#4008988Answer by Gabe Hollombe for Xcode: iPhone app codesign errorGabe Hollombe2008-12-30T17:19:56Z2008-12-30T17:19:56Z<p>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’. </p>
<p><img src="http://www.kickasslabs.com/wp-content/uploads/2008/12/picture-1.jpg" alt="xcode-screenshot" /></p>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/401833#4018331Answer by lajos for Xcode: iPhone app codesign errorlajos2008-12-30T23:27:37Z2008-12-30T23:27:37Z<p>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.</p>
<p>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.)</p>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/404898#4048986Answer by Shalmanese for Xcode: iPhone app codesign errorShalmanese2009-01-01T12:23:23Z2009-01-01T12:23:23Z<p>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.</p>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/472067#472067-1Answer by jay for Xcode: iPhone app codesign errorjay2009-01-23T06:25:25Z2009-01-23T06:25:25Z<p>thanks for your help. It was also top on google's list.</p>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/534636#534636-1Answer by AE J for Xcode: iPhone app codesign errorAE J2009-02-10T22:56:15Z2009-02-10T22:56:15Z<p>Where is this menu!? Take a whole screenshot so I can find it, not just of the menu...</p>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/899881#8998810Answer by muradju for Xcode: iPhone app codesign errormuradju2009-05-22T20:36:48Z2009-05-22T20:36:48Z<p>No Vodoo necessary. Sometimes some app changes default keychain and Xcode stops finding iPhone Developer Keys. The solution is simple (it worked for me):</p>
<ol>
<li>List item Start Keychain Access app</li>
<li>Ctrl+click on keychain where you stored your development keys and select Make Keychain Default</li>
<li>Enjoy developing great iPhone apps.</li>
</ol>
http://stackoverflow.com/questions/400894/xcode-iphone-app-codesign-error/1917148#19171480Answer by David Gutnik for Xcode: iPhone app codesign errorDavid Gutnik2009-12-16T19:42:24Z2009-12-16T20:05:49Z<p>I've signed up for the $99 developer thing.
I went through the whole process about 1/2 a year ago.</p>
<p>now i finally made my first iphone app, and when i try to publish </p>
<p>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.
I've read through this blog here, and yes when i switch it to simulator, it will build and go no problem.
But i want to publish for the app store, so i think i need to find my key in the key chain, but i don't see anything saying "Developer key" or anything like that.
What should the key be called in the key chain?
if it's missing how do i get one again?</p>