Code Signing Explained (Certificates, Identifiers, Profiles – what?)
iOS code signing explained
What is it and why do we need it?
Fundamentally, we could define iOS Code Signing as follows:
Code Signing controls which apps, made by which developer, can run on which devices
We can see that there are three main aspects:
Apps📦 – We need a way to uniquely identify an application
Developers👩💻👨💻– A developer (or group thereof) must be able to prove their identity
Devices📱⌚️ – An app can be distributed in different ways, and iOS must be able to identify which ways are allowed and which are not
How do we achieve that?
Three problems, three components to solve them: Bundle Identifiers, Certificates and Provisioning Profiles.
We use a Bundle Identifier🏷 which is just a string, typically of the form
<country>.<developer>.<project>
to identify an application. For example the Migros Play app usesch.migros.play
. Since the same Bundle Identifier could theoretically be used by different developers, this is automatically prefixed by Code Signing with the Team Identifier which is created during the registration of a developer with Apple. The final Bundle ID of an app looks something likeASDFGH1234.ch.migros.play
A developer can create Certificates📜 which enable them to prove their identity to Apple, or to iOS respectively.
Now to tie it all together and enable our app to run, we use Provisioning Profiles✉️. A provisioning profile specifies a Bundle Identifier, so we know which app the permission is for, a Certificate, so we know who created the app, and it also defines in which ways the app can be distributed.
There are different kinds of certificates and provisioning profiles, and together, they are used for different purposes. Let's explore which types of signing assets (certificates and provisioning profiles) you need to achieve that.
Environments 🌍
Development 🛠 – Simulator 💻
Let's start with an exception – but in favor of simplicity. To run an app on the iOS Simulator that comes with Xcode, you don't need any code signing at all! Just hit "Run" and the app will run.
Development 🛠 – Real Device📱
Certificate: Development
Provisioning Profile: Development
But of course, testing the on a real device is better because it is a more accurate representation of the environment it will be running in once you distribute the app. Signing your app for Development allows you to build it in Xcode and directly run it on a device – be it iOS, watchOS or tvOS. The device has to be physically connected to your machine with a cable or over the network, and the app will be installed directly onto it. For this, you need a Development Certificate, along with a Development Provisioning Profile, both of which are needed to run the app on a device.
Distribution 📤 Ad Hoc 👥
Certificate: Distribution
Provisioning Profile: Ad Hoc
Check out our article on how to register your devices for Ad Hoc Signing.
Fastlane
If you want to run your app on many devices, this can get a bit cumbersome, right? We'll show you how you can simplify registering the devices using Fastlane
somewhere down the road. But what if we don't want to deal with any of this, and let our app run on many devices without registering them in advance? This leads us to...
Distribution 📤 – Enterprise🏢
Certificate: Distribution (Enterprise)
Provisoning Profile: Universal Distribution
For some of our projects, we want to have large groups of testers and of course asking every one of them to provide their UDID is highly impractical. (Besides Apple not supporting more than 100 Ad Hoc devices for an app.) So we can circumvent this by using an Enterprise account. This is a separate account you have to make, which costs a bit more than a standard developer account. It does not have the possibility to deploy apps on the regular App Store. But get this: With Enterprise signing, you can run your apps on any device, without having to register the UDIDs in advance!
To achieve this, you need to use the enterprise account to generate a specific set of certificates and provisioning profiles. Generally, if you have lots of apps that you want to distribute, it's best to make a wildcard provisioning profile that allows any app to be signed with it.
Distribution📤 – App Store🌎
Certificate: Distribution
Provisioning Profile: Distribution
To distribute your app in the App Store, it needs to pass the Apple App Review. This way, we also don't have to register the devices that can run the app beforehand – similar to Enterprise signing. Apps that are on the store are implicitly trusted. You just sign it with your distribution certificate and provisioning profile, upload it to App Store Connect and you're good to go – for as long as your Developer Membership at Apple is valid.
How to Code Sign for Updraft
Summary
Last updated