Code Sign error: The identity ‘iPhone Developer: x Xxxxx’ doesn’t match any identity in any profile

  1. Right Click the Project (eg. x.xcodeproject) and select Show Package Content
  2. Open project.pbxproj with TextEdit
  3. Search for all “CODE_SIGN_IDENTITY[sdk=iphoneos*]” and set it to “CODE_SIGN_IDENTITY[sdk=iphonesos*]” = “iPhone Developer”;
  4. Search for “PROVISIONING_PROFILE[sdk=iphoneos*]” and set it to
    “PROVISIONING_PROFILE[sdk=iphoneos*]” = “”;
  5. Save the file
  6. Reopen the Xcode project or select “Read from Disk” resulting from Xcode the prompt.
  7. This Worked for me. I hope it works for you too.

Leave a Comment