Edit this page
Learn about internal distribution builds, why we need them, and how to create them.
In this chapter, we'll learn how to set up internal distribution builds.
Internal distribution builds are ideal for sharing updates with team members, allowing both technical and non-technical stakeholders to provide feedback directly. Unlike development builds, these do not require running a development server, simplifying the testing process.
Both Google and Apple provide built-in mechanisms for sharing apps internally:
However, both of these traditional methods have their limitations. For example, TestFlight limits to one active build at a time.
EAS Build speeds up the process. It creates shareable links for our builds and provides instructions on using them. It has a default configuration designed to facilitate internal distribution, offering a more efficient alternative to traditional methods.
To create and distribute a build with EAS Build, we need to follow these steps:
1
From our initial setup in eas.json, we already have a default configuration that includes a preview
build profile designed for internal distribution:
{
"build": {
"preview": {
"distribution": "internal"
}
}
}
This is all we need to create our first internal distribution build. The preview
build profile from the above snippet has a distribution
property whose value is set to internal
. This value allows us to share our build URLs with anyone so they can install it on their device and do not require a development server to run the app.
As discussed in the previous chapters, for non-app store builds, Android requires .apk and iOS needs .ipa formats. This applies to internal distribution builds as well. The distribution
when set to internal
, automatically creates the app binary in these file formats for devices.
2
preview
profile to initiate an Android build:-
eas build --platform android --profile preview
Apple has stricter rules for app distribution on iOS devices. We need an ad hoc provisioning profile, which allows explicitly listing the devices allowed to run the app.
eas device:create
. This command registers an iOS device and gives us a URL or QR code to share for device registration:-
eas device:create
This command registers an iOS device for app installation, generating a shareable URL (or QR code) for device registration.
Tip: This command enables device registration at any time. However, only builds created post-registration will work on the newly added device.
To create the preview build, we need to use the preview
profile with the eas build
command:
-
eas build --platform ios --profile preview
eas build:resign
eas build:resign
command can be used to re-sign an existing iOS .ipa with a new ad hoc provisioning profile, eliminating the need for a full rebuild.
3
Once the build finishes, the Build artifact section gets updated, indicating that the build is complete. This section provides the methods available for running the development build on an iOS device: Expo Orbit and Install button.
4
Chapter 6: Create and share internal distribution build
We successfully created internal distribution builds for Android and iOS, used ad hoc provisioning for iOS, and installed multiple app variants on the same device.
In the next chapter, learn about developer-facing and user-facing app versions and how to manage them automatically.