# Signing and provisioning cheat sheet

Use this cheatsheet to understand how different provisioning and signing configurations allow (or disallow) for build installation on a given device.

## iOS signing and provisioning

<table data-header-hidden><thead><tr><th width="189.66666666666669"></th><th width="165"></th><th></th></tr></thead><tbody><tr><td>Profile Type</td><td>Certificate Type</td><td>Who can install?</td></tr><tr><td>Development</td><td>Development</td><td>Any device whose device identifier is included in the Development profile that was used for the build</td></tr><tr><td>Ad Hoc</td><td>Distribution</td><td>Any device whose device identifier is included in the Ad Hoc profile that was used for the build</td></tr><tr><td>App Store</td><td>Distribution</td><td>Cannot be installed outside of TestFlight</td></tr><tr><td>In House (Enterprise)</td><td>Distribution</td><td>Any device. You must <a href="https://support.apple.com/en-us/HT204460">establish enterprise app trust</a> before you can install an app with an Enterprise profile.</td></tr></tbody></table>

\
Android signing
---------------

<table data-header-hidden><thead><tr><th width="199.5"></th><th></th></tr></thead><tbody><tr><td>Signing Type</td><td>Who can install?</td></tr><tr><td>Unsigned</td><td>Android requires all APKs to be signed in order to be installed. Unsigned APKs cannot be installed.</td></tr><tr><td>Signed</td><td>All Android devices can install signed APKs as long as they’ve enabled the “Install unknown apps” setting. To enable this setting, follow <a href="#enabling-apk-sideloading-on-android-devices">these steps</a>.</td></tr></tbody></table>

### &#x20;**Enabling APK sideloading on Android devices**

In order to enable your Android device to install APKs downloaded outside of the Play Store, you must first enable the “Install unknown apps” setting on your device. Follow these steps to enable this setting:

1. On your Android device go to **Settings > Apps**
2. Go to **General > Special App Access**
3. Scroll down and go to **Install unknown apps**
4. Select the app corresponding to your device’s browser (usually Chrome) and enable **Allow from source**

{% hint style="info" %}
The exact steps to enable APK sideloading may differ based on your device and version of Android.
{% endhint %}
