Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode import .cer and .mobileprovision file

I use Xcode 9 for building iOS application, and for that purpose I use my apple account. Now I got from client certificate and provision profile in .cer and .mobileprovision format. Can someone explain me how to use them and import them in Xcode, or anywhere is needed?

I found somewhere to install certificate in keychain, but I didn't find is that in all certificate, my certificate, login, .... Anyhow I couldn't manage.

For .mobileprovision I couldn't find anything.

Any help? Thanks in advance

like image 554
Sasa Avatar asked Oct 17 '25 13:10

Sasa


1 Answers

Remember first to load you certificate in your Computer Keychain.

To install a mobileprovision file in an XCode project you have to:

  1. Go to the Project Properties - Simply select the top node in the Project navigator.
  2. Go to the Signing & Capabilities tab.
  3. Disable "Automatically manage signing"
  4. Open the "Provisioning Profile" combo and select "Import Profile..."
  5. Navigate and select the .mobileprovision file.

And that should do it. Hope this helps.

like image 67
Daniel Suárez Avatar answered Oct 19 '25 04:10

Daniel Suárez