iOS/Xcode问题之Command CodeSign failed with a nonzero exit code或者Revoke certificate

如果你也经历了类似的错误,可以尝试用我的方法看是否解决。错误例图如下

iOS/Xcode问题之Command CodeSign failed with a nonzero exit code或者Revoke certificate_第1张图片

iOS/Xcode问题之Command CodeSign failed with a nonzero exit code或者Revoke certificate_第2张图片

  1. 根据我的经验,造成这个问题的原因是我错误地将钥匙链访问权限重置为默认,所以我丢失了我的开发证书。
  2. 我怎么解决这个问题?
  3. 我从钥匙链访问(Keychain Access)中清理了我的苹果开发证书
  4. 我Keychain Access清理了我的苹果开发private密钥
  5. 然后我得到了新的错误: Revoke certificate Your account already has an Apple Development signing certificate for this machine, but its private key is not installed in your keychain. Xcode can create a new one after revoking your existing certificate.
  6. 转到Xcode->Preferences->Accounts标签->在苹果ID下找到team name ->双击它->点击框左下角的+按钮->选择App Development
  7. 在项目-> Signing & Capabilities->Team下拉菜单中,选择“None”
  8. 重新选择正确的开发团队
  9. 通过shift + cmd + k清洁项目
  10. 重建cmd + b项目

你可能感兴趣的:(swift5,Xcode,iOS,ios,xcode)