-
Notifications
You must be signed in to change notification settings - Fork 9
iOS Signing
Once you have downloaded the Apple iPhone certificate from Apple, export it to the P12 keystore format. To do this on Mac® OS:
-
Open the Keychain Access application (in the Applications/Utilities folder).
-
If you have not already added the certificate to Keychain, select File > Import. Then navigate to the certificate file (the .cer file) you obtained from Apple.
-
Select the Keys category in Keychain Access.
-
Select the private key associated with your iPhone Development Certificate. The private key is identified by the iPhone Developer: public certificate that is paired with it.
-
Command-click the iPhone Developer certificate and select, Export "iPhone Developer: Name...".
-
Save your keystore in the Personal Information Exchange (.p12) file format.
-
You will be prompted to create a password that is used when you use the keystore to sign applications or transfer the key and certificate in this keystore to another keystore.
To develop apps via Build, you must use a P12 certificate file. You generate this certificate based on the Apple iPhone developer certificate file you receive from Apple.
1- Download and install OpenSSL
2- Convert the developer certificate file you receive from Apple into a PEM certificate file. To do this, run the following command-line statement from the OpenSSL bin directory:
openssl x509 -in developer_identity.cer -inform DER -out developer_identity.pem -outform PEM
3- If you are using the private key from the keychain on a Mac computer, convert it into a PEM key:
openssl pkcs12 -nocerts -in mykey.p12 -out mykey.pem
4- You can now generate a valid P12 file, based on the key and the PEM version of the iPhone developer certificate:
openssl pkcs12 -export -inkey mykey.key -in developer_identity.pem -out iphone_dev.p12
- Visit Apple Developer Portal.
- Go to Device section. Under Manage tab, provide Device Name and Device ID (40 hex characters)
- Visit Apple Developer Portal.
- Go to Provisioning section. Create new profile under Development tab.
- Fill the form with Profile Name, Certificates (as per .cer above), App ID and your development device.
1- Go to your Account > Edit Setting > Signing Keys' tab.
2- Click 'add a key...' and supply the following info.
- Title => anything
- Certificate (.p12) file => previously generated .p12
1- Go to your Account > Edit Setting > Signing Keys' tab:
2- Click 'lock' button and supply the following:
- Certificate password




