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

Right Click the Project (eg. x.xcodeproject) and select Show Package Content Open project.pbxproj with TextEdit Search for all “CODE_SIGN_IDENTITY[sdk=iphoneos*]” and set it to “CODE_SIGN_IDENTITY[sdk=iphonesos*]” = “iPhone Developer”; Search for “PROVISIONING_PROFILE[sdk=iphoneos*]” and set it to “PROVISIONING_PROFILE[sdk=iphoneos*]” = “”; Save the file Reopen the Xcode project or select “Read from Disk” resulting from Xcode the prompt. This … Read more

“Warning: unable to build chain to self-signed root for signer” warning in Xcode 9.2

If none of the other solutions work, try adding the intermediate signing certificates to your system keychain. I found this while trying to manually create provisioning profile/certificates as nothing else was working – from the Create a New Certificate step of the New Provisioning Profile process on Apple Developer platform: To use your certificates, you … Read more