Xcode Failed to load profile

5.1k Views Asked by At

My Xcode suddenly got a weird issue that there's some provisioning profiles I couldn't download or even import them manually. Got an error message all the time. enter image description here

I tried to uninstall and reinstall Xcode again, and still got the problem. Also, I manually copied the profile into ~Library/Mobile Device/Provisioning Profiles folder, and my Xcode wouldn't recognize it. Have anyone seen the issue before? Please don't ask me to delete and re-create the profile as it's a company provisioning profile, and it worked on my colleagues' computer.

Just recognize I was able to load or install all distribution profiles, all development profiles got the issue.

3

There are 3 best solutions below

5
On

Here are a few checks I go through when I get anomalous behavior from Xcode with respect to development provisioning profiles.

  1. Check to ensure that you have selected the correct Apple ID and correct Team by clicking Xcode > Preferences > Accounts > select the correct Apple ID on the left-hand side of the panel, and select the correct Team at the lower-right hand side of the panel
  2. Check to ensure that you have installed the necessary components for Xcode by clicking Xcode > Preferences > Components > ensure the correct Toolchain is selected, then > Check and Install Now
  3. Download the provisioning profile manually from the Apple Developer Portal, then drag-and-drop it onto your Xcode dock icon.
  4. Open your project in Xcode and click on the project icon in Project navigator > Build Settings > scroll down to Code Signing Identity > ensure is set to iOS Developer
  5. While still in Build Settings, scroll down to Provisioning Profile > ensure the name of the profile you expect is selected or that it is set to Automatic
  6. Try to build.

If that doesn't work, you can try altering step 4. by doing the following instead:

  • Make sure to not select "Automatic" for the "Provisioning Profile" field(s) in Xcode > Build Settings
  • Instead, set all "Provisioning Profile" fields specifically to the profile with which you are trying to build
  • open the Terminal app
  • cd to the directory of your Xcode project
  • cd into your Xcode project, like so: cd MyProject.xcodeproj/
  • cd xcuserdata
  • open project.pbxproj -a TextEdit
  • hold the "command" key and tap "F" on your keyboard
  • enter 'PROVISIONING_PROFILE' and press 'return'
  • if 1 or more results are found, ensure the value to the right of the PROVISIONING_PROFILE variable is set to the UUID of the profile you want (i.e. compare to what you see in Quick Look to ensure a match)... if 0 options are found, something else may be wrong with your xcodeproj file
  • the UUID should be a string (surrounded by double-quotes), e.g. PROVISIONING_PROFILE = "abcdef01-2345-6789-abcd-ef0123456789";
  • save the file with TextEdit and then close TextEdit
  • try to build again
0
On

Kindly make sure installed mobileprovision file is valid, otherwise kindly regenerate the mobileprovision from developer.apple.com site and import it manually in xcodeproject IDE.

0
On

For those who also got this issue, I was able to resolve this bug by deleting complete my XCode 9.4.1 and all local provisioning profiles, and update to latest XCode 10.0. After that, I can install and load all profiles as usual.