user11145365
user11145365

Reputation: 313

XCode insists on using a revoked certificate

ERROR ITMS-90721: "Certificate Revoked. The signing certificate "C=GB, O=XXX, OU=Y, CN=3rd Party Mac Developer Installer: NAME (XXX), UID=XXX” with serial number 123456789 used to sign APP.pkg has been revoked. Learn more (https://help.apple.com/xcode/mac/current/#/dev154b28f09)."

I've tried repeatedly (including actually revoking all certificates in the Developer portal and re-issuing), cleaning the build folder, restarting XCode/OSX .

Any suggestions on where to go from here?

Upvotes: 1

Views: 955

Answers (2)

Graham Perks
Graham Perks

Reputation: 23398

A couple of additional things to try :

  1. In the keychain app, remove the revoked certificate
  2. In Xcode -> Preferences -> Account, delete your account and re-add it.

That should ensure Xcode downloads a current certificate.

Upvotes: 2

Oleksandr Yevdokymov
Oleksandr Yevdokymov

Reputation: 262

Maybe this issue related on old Revoked Certificates that located in your project. Follow to go this path in XCode:

XCode -> Preferences.. -> Accounts -> Manage Certificates

Try to remove all old and revoked certificates in that window. I had the similar issue and it's help for me.

Upvotes: 3

Related Questions