I am getting this error:

CodeSign error: Certificate identity 'iPhone Developer: XXX' appears more than once in the keychain. The codesign tool requires there only be one.

At first I though, no worries, I will just go into keychain and delete the duplicate (older) one, which I did. I went back, closed xcode, reopened xcode and project, same error. wtf I though to myself. Back into keychain and the cert is there again. I delete both certs, repeat, and notice as the project loads, the two certs I deleted pop back into the keychain.

After much searching, I ensured I did not have the cert in the system keychain, which I did not. Also did a clean and rebuild. When I had duplicates with xCode 3 I could just clean up the keychain duplicate and I was good. But with xCode 4 it literally just reinstalls them somehow when I open the project. I even deleted all .cer files on my system that it might possibly be pulling them from.

Any suggestions?

link|improve this question

Cheers. Had the same problem. :) – RedBlueThing Mar 24 '11 at 0:32
feedback

9 Answers

up vote 46 down vote accepted

The solution was to go into organizer - under library - provisioning profiles, delete all of them and then reinstall any profiles I still needed.

link|improve this answer
Yup! I can confirm this works. Even though I kept deleting the one in the keychain it kept reappearing. Once I removed the old Provisioning Profiles from the Organizer all was as normal. Thanks! :) – RoLYroLLs Apr 3 '11 at 15:02
1  
Works for me too! Thanks! I think what XCode4 is trying to do is insert dev certs into your keychain for prov profiles that are missing them even if the dev certs are expired. – iphone007 Apr 7 '11 at 1:19
2  
Also remember to regenerate your provisioning profile if you renewed your dev cert. I didn't and when I re-added an old prov profile, the associated expired dev cert was reinserted into the keychain, D'oh! – iphone007 Apr 7 '11 at 1:32
Be careful, I somehow deleted my login keychain trying to delete profiles. Not sure how this happened as I am pretty sure the keychain list area had focus when I hit delete. Backup before deleting and be careful. – juggleware May 2 '11 at 16:47
thanks such a dumb problem. – Jesse Naugher Jun 16 '11 at 16:00
show 3 more comments
feedback

XCode 4 has a new feature "Automatic Device Provisioning". It's located in the organizer under library/provisioning profiles. If you have this enabled it will automatically download your provisioning profiles from the apple developer provisioning server and thus you get the error of having duplicates. The easiest way to fix it is to delete all provisioning profiles and press refresh for the "Automatic Device Provisioning". This will load your provisioning profiles from the server and will fix your problem.

link|improve this answer
Thanks for this. I have deleted my profiles and used the automatic device provisioning to retrieve them back and the problem was gone. – Sasho Aug 10 '11 at 6:59
feedback

if you want to mess with keychain access to remove the expired certificate, you may try this:

  • create a new keychain, name it "expired" and move ONLY the expired certificate to it.
  • delete the newly created "expired" keychain which contains ONLY the expired certificate, when asked select "Delete references & files".

the expired certificate disappears together with the keychain. worked perfectly for me.

link|improve this answer
feedback
  1. Remove all Provisioning Profiles from XCode Organizer;
  2. Remove old Developer Certificates from Keychain Access;
  3. Generate Provisioning Profiles with the correct Developer Certificate only;
  4. Download and install the new Provisioning Profiles;
link|improve this answer
1  
wow.. repeating my answer in point form is helping how? – Codezy Apr 20 '11 at 16:10
Your answer did not fix my the problem, actually I have removed developer certificates and provisioning profiles several times, but old developer certificate always get reinstalled. But @iphone007's comment is helpful, I just merge them .... – iwill Apr 21 '11 at 2:58
This was the simplest summary and worked for me. – Ralph B Feb 2 at 4:26
feedback

Deleting provisioning profiles in Organizer's library, additionally, you should delete iPhone developer certificate in Keychain Access. (The certificate's name is probably like "iPhone Developer: XXXXX ..." and indicated by red X sign, as expired)

link|improve this answer
Just removing and reinstalling provisioning profiles in the Organizer didn't help, but your suggestion of removing the expired profile from the keychain fixed it for me, thanks! – gulchrider Jan 4 at 2:14
feedback

For posterity, here's the strategy to get around this problem in our automated build script:

  1. Before building, move the ~/Library/MobileDevices/Provisioning Profiles directory aside
  2. Check to see if the iPhone Configuration Utility is running and close it (certs always reappear if this app is open. In XCode 4.1 you need to close the organizer too.)
  3. Run you build
  4. Move the Provisioning Profiles directory back
  5. Profit?
link|improve this answer
feedback

I've tried everything suggested here but nothing worked for me except reinstaling XCode 4.3 magically solved the case.

link|improve this answer
feedback

I had this same problem and the solutions above did not solve my problem (well nearly).

I had the same duplicate developer ID/certificate that everyone is complaining about, and I tried deleting all my profiles, revoking/reissuing my cert, making sure there were none in the system keychain, restarting, etc etc.

In the end it turned out there was a certificate in the system keychain, one that had expired and so was hidden by default in the list.

Make sure you can see expired certificates in KeyChain

To do this:

  1. Open Keychain Access
  2. Click View menu
  3. Click Show Expired Certificates
  4. then look for, and delete expired developer certs
link|improve this answer
feedback

the above method not work for my case

finally , i go to keychain

and search the key by entering the name

i finally found the cert which is supposed to be deleted before . then i deleted it and the problem solved

it's really frustrating , and i don't know whether it's the bug ....... really exhausting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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