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

Reloading UITableView while Animating Scroll in iOS 11

Reloading UITableView while Animating Scroll Calling  reloadData  on  UITableView  may not be the most efficient way to update your cells, but sometimes it’s easier to ensure the data you are storing is in sync with what your  UITableView  is showing. In iOS 10  reloadData  could be called at any time and it would not affect the scrolling UI of  UITableView . However, in iOS 11 calling  reloadData  while your  UITableView  is animating scrolling causes the  UITableView  to stop its scroll animation and not complete. We noticed this is only true for scroll animations triggered via one of the  UITableView  methods (such as  scrollToRow(at:at:animated:) ) and not for scroll animations caused by user interaction. This can be an issue when server responses trigger a  reloadData  call since they can happen at any moment, possibly when scroll animation is occurring. Example of s...

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...

Xcode & Instruments: Measuring Launch time, CPU Usage, Memory Leaks, Energy Impact and Frame Rate

When you’re developing applications for modern mobile devices, it’s vital that you consider the performance footprint that it has on older devices and in less than ideal network conditions. Fortunately Apple provides several powerful tools that enable Engineers to measure, investigate and understand the different performance characteristics of an application running on an iOS device. Recently I spent some time with these tools working to better understand the performance characteristics of an eCommerce application and finding ways that we can optimise the experience for our users. We realised that applications that are increasingly performance intensive, consume excessive amounts of memory, drain battery life and feel uncomfortably slow are less likely to retain users. With the release of iOS 12.0 it’s easier than ever for users to find applications that are consuming the most of their device’s finite amount of resources. Users can now make informed decisions abou...