Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find provisioning profile in Xcode 5

In Xcode 5, I can get list of provisioning profiles under Xcode >> preferences >> accounts >> view details. I want to copy profile and have to send it to one of my client, but I am not able to right click on it to find it using "Reveal Profile in Finder" option.

How can I get specific provisioning profile in XCode 5 or do I have to download it from developer.apple every time?

enter image description here

like image 273
Ankur Avatar asked Sep 17 '13 12:09

Ankur


People also ask

Where are iOS provisioning profiles stored?

The default location is ~/Library/MobileDevice/Provisioning Profiles. You need to browse or navigate to the profile file when you sign apps with the signing utility in iOS Gateway.


1 Answers

I found a way to find out how your provisioning profile is named. Select the profile that you want in the code sign section in the build settings, then open the selection view again and click on "other" at the bottom. Then occur a view with the naming of the current selected provisioning profile.

You can now find the profile file on the path:

~/Library/MobileDevice/Provisioning Profiles

Update:

For Terminal:

cd ~/Library/MobileDevice/Provisioning\ Profiles 
like image 130
matzino Avatar answered Oct 05 '22 18:10

matzino