Non-market App Distribution
You might want to distribute your application outside the App Store for these two purposes:
- 1.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.
- 2.In-house applications: The application is made for internal use (in a company or organization) only.
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:
- 1.using App Store Connect: requires a iOS Developer Account and takes time since it needs approval from Apple Review prior to the distribution.
- 2.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.
- 1.
- 2.Connect your device to the PC.
- 3.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.You can install your iOS app (
.ipa
file) via Xcode as follows:- 1.Connect your device to your PC.
- 2.Open Xcode and go to Window → Devices .
- 3.The Devices screen will open. Choose the device you want to install the app on.
- 4.Drag and drop your
.ipa
file into theInstalled Apps
as shown below:
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.
- 1.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.
- 2.After the build is completed, download the
.ipa
file. - 3.Open iTunes and go to the
App library
. - 4.Drag and drop the downloaded
.ipa
file into theApp library
. - 5.Connect your device to iTunes and go to your device apps.
- 6.Click Install and then Sync. See the example below:

OTA (Over-The-Air) deployment enables you to install your built apps via HTTPS.
- 1.Build your application with either debug, ad-hoc or in-house build. For more
- 2.Download the
.ipa
file after the build completes. - 3.Upload the
.ipa
file to the site you want. - 4.Create a
.plist
file for this built application. The.plist
file should look like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://www.anysite.com/application/your_app.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.example.helloworld</string>
<key>bundle-version</key>
<string>1.0.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>HELLO</string>
</dict>
</dict>
</array>
</dict>
</plist>
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.<a href="itms-services://?action=download-manifest&
url=https://www.anysite.com/application/your_app.plist">
Download
</a>
7. After you get the link, use your device to access the link. Then, you will be prompted to install the application.

You might want to distribute your application outside the official markets such as Google Play Store and Amazon AppStore for these two purposes:
- 1.Testing: Before releasing your apps, you want to testthem as much as you can. Thus, you might want to distribute yourapps to users (testers) by other ways than the officialmarkets.
- 2.Personal/Internal Purpose: The application is made for your ownpersonal or internal use.
ADB (Android Debug Bridge) is a tool that enables you to use terminal commands on your phone.
Prerequisite:
- 1.Install Android SDK on your computer
- 2.Locate the ADB path after the Android SDK installation
- 3.Enable USB Debugging and allow the installation of the apps from sourcesother than the Play Store on your device.
To install your built app via the ADB command:
- 1.Build your application with the debug build. For more details about
- 2.After the build is completed, download the
.apk
file. - 3.Plug your device with a USB cable to your computer.
- 4.Run the below command on your computer in the command window. Make sure to use the correct path to your
.apk
file.
adb install foo.apk
This is simply an installation through a direct link to your
.apk
file:- 1.Build your application with the debug build. For more details about
- 2.After the build is completed, download the
.apk
file. - 3.Upload the downloaded file to any site you want.
- 4.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 modified 1yr ago