Non-market App Distribution
For iOS apps
You might want to distribute your application outside the App Store for these two purposes:
Testing: Before releasing your app, you want to test it as much as you can. Thus, you might also want to distribute your app to users (testers) by other ways than the App Store.
In-house applications: The application is made for internal use (in a company or organization) only.
For in-house distribution, you will need to have an Apple Developer Enterprise Program account.
The differences between the Apple Developer and Apple Developer Enterprise programs regarding apps distribution:
Apple Developer Program | Apple Developer Enterprise Program | |
Beta OS Releases | Yes | Yes |
Ad Hoc Distribution | Yes | Yes |
App Store Distribution | Yes | No |
In-house Distribution | No | Yes |
TestFlight Beta Testing | Yes | No |
Team Management | No | Yes |
App Analytics | Yes | No |
For more information about the differences between the two programs, please refer to Choosing a Membership.
There are two ways to distribute your pre-release apps for testing:
using App Store Connect: requires a iOS Developer Account and takes time since it needs approval from Apple Review prior to the distribution.
using Ad Hoc distribution: can be done with either iOS Developer or iOS Developer Enterprise accounts. Also, it doesn’t require the approval from Apple Review.
In-house distribution is for distributing your iOS apps securely to your employees. In other words, you can distribute your app to any company devices. However, if you want someone outside of your company to test your app or restrict the distribution to specific devices, you can use Ad Hoc distribution.
Ad Hoc distribution is for distributing your apps using Ad Hoc provisioning profile to up to 100
registered devices.
Both types of distribution have the same ways of app installation. The difference is the provisioning profile.
There are several ways to install your applications outside the App Store as shown in the following sections.
Install using Apple Configurator 2 (Mac Only)
Install the Apple Configurator 2 program on your Mac from the App Store.
Connect your device to the PC.
Open the Apple Configurator 2 and select your device. If you device doesn’t appear, please make sure that your device is properly connected to your Mac.
4. Click the ➕ button and select the Apps option.
5. Click the Choose from my Mac button and browse the .ipa
file. Then, the app will be installed on your device.
Install using Xcode
You can install your iOS app (.ipa
file) via Xcode as follows:
Connect your device to your PC.
Open Xcode and go to Window → Devices .
The Devices screen will open. Choose the device you want to install the app on.
Drag and drop your
.ipa
file into theInstalled Apps
as shown below:
Install using iTunes
iTunes 12.7 for Mac was released with a major change in the app. Apple has redesigned iTunes so that it focuses on sales of music, movies, TV shows, audiobooks, and podcasts. It no longer has an App Store for buying apps for your iPhone or iPad. Therefore, you can no long install your iOS App (.ipa file) through iTunes any longer.
Build your application with with the debug or ad-hoc build. For more details about the iOS build process, please refer to Building an iOS App.
After the build is completed, download the
.ipa
file.Open iTunes and go to the
App library
.Drag and drop the downloaded
.ipa
file into theApp library
.Connect your device to iTunes and go to your device apps.
Click Install and then Sync. See the example below:
Install using OTA deployment
OTA (Over-The-Air) deployment enables you to install your built apps via HTTPS.
Build your application with either debug, ad-hoc or in-house build. For more
details about the iOS build process, refer to Building an iOS App.
Download the
.ipa
file after the build completes.Upload the
.ipa
file to the site you want.Create a
.plist
file for this built application. The.plist
file should look like this:
While creating .plist
file, please pay attention to these points:
.plist
file must be accessible via https protocol.update bundle-identifier with the App ID.
specify correct path to the
.ipa
file.
5. Upload the .plist
file to the site you want. Make sure this file can be accessed via HTTPS protocol.
6. Create a webpage embedded link to the uploaded .plist
file using a special itms-services://
protocol.
7. After you get the link, use your device to access the link. Then, you will be prompted to install the application.
For Android apps
You might want to distribute your application outside the official markets such as Google Play Store and Amazon AppStore for these two purposes:
Testing: Before releasing your apps, you want to test
them as much as you can. Thus, you might want to distribute your
apps to users (testers) by other ways than the official
markets.
Personal/Internal Purpose: The application is made for your own
personal or internal use.
Install using the ADB command
ADB (Android Debug Bridge) is a tool that enables you to use terminal commands on your phone.
Prerequisite:
Install Android SDK on your computer
Locate the ADB path after the Android SDK installation
Enable USB Debugging and allow the installation of the apps from sources
other than the Play Store on your device.
To install your built app via the ADB command:
Build your application with the debug build. For more details about
Android build process, please refer to Building for Android.
After the build is completed, download the
.apk
file.Plug your device with a USB cable to your computer.
Run the below command on your computer in the command window. Make sure to use the correct path to your
.apk
file.
Install using a direct link
This is simply an installation through a direct link to your .apk
file:
Build your application with the debug build. For more details about
Android build process, please refer to Building for Android.
After the build is completed, download the
.apk
file.Upload the downloaded file to any site you want.
Go the link of the uploaded file from your device. Then, you will be prompted to install the application.
Please make sure make these settings on your device beforehand:
Enable USB debugging.
Allow installation of the apps from sources other than the Play Store.
See Also:
Last updated