Skip to main content

How to Locate, Download, & Share Your iOS Distribution Certificate

Download, & Share Your iOS Distribution Certificate

How to Convert Distribution Cert to .p12

During the submission and resubmission process, you may be asked to provide your Distribution Cert in .p12 format. This is quite common, especially when the iOS Developer account currently has or previously has had non Mobile Roadie Apps.

When Distribution Certs are created, they must be signed using a Certificate Signing Request (CSR) Key. When the Cert is downloaded on a computer which does not have this CSR Key, the Distribution Cert cannot be used to build/rebuild your iOS App until that computer contains the CSR Key used to sign that Distribution Cert. When the Distribution Cert is sent in .p12 format, the CSR Key is contained within that file allowing the Cert to be used by Mobile Roadie's App Submission Team to build/rebuild and submit your App to iTunes.

Mac Users

1. Login to the iOS Developer Center (https://developer.apple.com/devcenter/ios/index.action) using your iOS Developer Account. You must have an iOS Developer Account in order to continue.

2. Select Certificates, Identifiers, & Profiles

3. Select Certificates under iOS Apps

4. Select Distribution along the left side. Then select and download the iOS Distribution Certificate (sort the list by Type if you have many certificates under your iOS Developer Account).

5. Once the Distribution Cert is downloaded, open Finder and navigate to the location where it was saved and double click the file to open in your Apple Keychain.

6. Expand the iOS Distribution Certificate in your Keychain by clicking the Arrow next to the Distribution Cert name, this displays the key used to sign the certificate. 

7. Right click on the Distribution Certificate and key, then select Export 2 Items. This will ensure the key used to sign the certificate is attached to the certificate and useable by whoever you send the certificate to. 

8. Select a location, name your .p12 file and select Save. You can now share this certificate with anyone who needs the certificate for development.

Windows Users
Due to the complex nature of creating and managing Distribution Certs, Mobile Roadie is unable to provide assistance at this time for non Mac users who are not already familiar with this process on their current operating system.

Allowing Mobile Roadie to Recreate Your Dist Cert
It is possible for Mobile Roadie to revoke and recreate the Distribution Cert inside of your iOS Developer Account. When the Distribution Cert is signed on the Clients end, however, Mobile Roadie will attempt to contact the client to obtain the .p12 file and will not revoke/recreate the Cert until authorisation to perform these actions are received.

Once the Distribution Cert is revoked and recreated, Mobile Roadie will send you the Distribution Cert in .p12 format which can then be used to submit/resubmit any current or future Apps in your iOS Developer Account.


Comments

Popular Posts

What are the Alternatives of device UDID in iOS? - iOS7 / iOS 6 / iOS 5 – Get Device Unique Identifier UDID

Get Device Unique Identifier UDID Following code will help you to get the unique-device-identifier known as UDID. No matter what iOS user is using, you can get the UDID of the current iOS device by following code. - ( NSString *)UDID { NSString *uuidString = nil ; // get os version NSUInteger currentOSVersion = [[[[[UIDevice currentDevice ] systemVersion ] componentsSeparatedByString: @" . " ] objectAtIndex: 0 ] integerValue ]; if (currentOSVersion <= 5 ) { if ([[ NSUserDefaults standardUserDefaults ] valueForKey: @" udid " ]) { uuidString = [[ NSUserDefaults standardDefaults ] valueForKey: @" udid " ]; } else { CFUUIDRef uuidRef = CFUUIDCreate ( kCFAllocatorDefault ); uuidString = ( NSString *) CFBridgingRelease ( CFUUIDCreateString ( NULL ,uuidRef)); CFRelease (uuidRef); [[ NSUserDefaults standardUserDefaults ] setObject: uuidString ForKey: @" udid " ]; [[ NSUserDefaults standardUserDefaults ] synchro...

16 AWS Gotchas

16 AWS Gotchas In January I launched the MVP for my own startup,  Proximistyle , which helps you find what you’re looking for nearby. On advice from friends and industry contacts I chose AWS as my cloud provider. Having never had to set up my own cloud infrastructure before, the learning curve to get from no experience to a stable VPC system I was happy with was significantly steeper than expected, and had its fair share of surprises. #1 Take advantage of the free resources offered AWS offers a free tier for new accounts. If you have recently bought a domain and set up a company you qualify for the free tier for a year. Additionally, if you are a bootstrapped startup you can apply for  the Startup Builders package  and get $1000 in AWS credits. After doing the above, you’re now ready to get started with setting up the AWS infrastructure for your startup. #2 Set up billing budgets and alerting The very first thing you should do after setting up billing, is enabling a budge...

Ultimate Folder Structure For Your React Native Project

  Ultimate Folder Structure For Your React Native Project React native project structure React Native is a flexible framework, giving developers the freedom to choose their code structure. However, this can be a double-edged sword for beginners. Though it offers ease of coding, it can soon become challenging to manage as your project expands. Thus, a structured folder system can be beneficial in many ways like better organization, simplified module management, adhering to coding practices, and giving a professional touch to your project. This write-up discusses a version of a folder arrangement that I employ in my React Native projects. This structure is based on best practices and can be modified to suit the specific needs of your project. Before we get into the project structure let’s give credit to @sanjay who has the original idea of the structure but I modify his version of the code, to make it better. Base library axios  — For network calling. react-navigation ...