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.
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.
Here are a few checks I go through when I get anomalous behavior from Xcode with respect to development provisioning profiles.
If that doesn't work, you can try altering step 4. by doing the following instead:
cd
to the directory of your Xcode projectcd
into your Xcode project, like so:cd MyProject.xcodeproj/
cd xcuserdata
open project.pbxproj -a TextEdit
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 yourxcodeproj
filePROVISIONING_PROFILE = "abcdef01-2345-6789-abcd-ef0123456789";