How can I remove a previously installed development provisioning profile from xcode?
A provisioning profile links your signing certificate and App ID so that you can sign apps to install and launch on iOS devices. You must have a development provisioning profile to sign apps for use with iOS Gateway version 3.4 and later.
They're stored in: ~/Library/MobileDevice/Provisioning Profiles
You'll want to restart XCode to refresh the list.
Xcode keeps provisioning profiles at following directory:
~/Library/MobileDevice/Provisioning\ Profiles
To remove old profile from Xcode just delete it's file and restart Xcode. Profile file names are somewhat cryptic, so use the following command to show their real names:
grep -a -A1 "<key>Name</key>" *.mobileprovision | grep -v "<key>Name</key>" | grep -v "^--"
If you need more than a name, for example list of UDIDs, this command shows all content of particular provisioning profile:
security cms -D -i xxx.mobileprovision
Update: recently Apple added ability to preview *.mobileprovision
files with standard Finder app.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With