Edit this page
Learn how to create a production build for your app that is ready to be submitted to app stores from the command line using EAS Build.
Whether you have built a native app binary using EAS or locally, the next step in your app development journey is to submit your app to the stores. To do so, you need to create a production build.
Production builds are submitted to app stores for release to the general public or as part of a store-facilitated testing process such as TestFlight. This guide explains how to create production builds with EAS and locally. It is also possible to create production builds for Expo apps with any CI service capable of compiling Android and iOS apps.
Production builds must be installed through their respective app stores. You cannot install them directly on your Android Emulator, iOS Emulator, or device. The only exception to this is if you explicitly set "buildType": "apk"
for Android on your build profile. However, it is recommended to use aab when submitting to stores, and this is the default configuration.
eas.json
configurationA minimal configuration for building a production build in eas.json is already created when you create your first build:
{
"build": {
%%placeholder-start%%... %%placeholder-end%%
"production": {}
%%placeholder-start%%... %%placeholder-end%%
}
}
To create a production build, run the following command for a platform:
-
eas build --platform android
-
eas build --platform ios
You can attach a message to the build by passing --message
to the build command, for example, eas build --platform ios --message "Some message"
. The message will appear on the Expo dashboard. It comes in handy when you want to specify the purpose of the build for your team.
Alternatively, you can use --platform all
option to build for Android and iOS at the same time:
-
eas build --platform all
You will need to have a developer account for the app store you want to submit your app.
You can build and sign your app using EAS Build, but you can't upload it to the Google Play Store unless you have a membership, a one-time $25 USD fee.
If you are going to use EAS Build to create production builds for the Apple App Store, you need access to an account with a $99 USD Apple Developer Program membership.
Before the build process can start for app stores, you need a store developer account and generate or provide app signing credentials.
Whether you have experience with generating app signing credentials or not, EAS CLI can do the heavy lifting. You can opt-in for EAS CLI to handle the app signing credentials process.
Generate new keystore
, and then you are done. The keystore is stored securely on EAS servers.By default, the eas build
command will wait for your build to complete, but you can interrupt it if you prefer not to wait. Instead, use the builds details page link prompted by EAS CLI to monitor the build progress and read the build logs. You can also find this page by visiting your build dashboard or running the following command:
-
eas build:list
If you are a member of an organization and your build is on its behalf, you will find the build details on the build dashboard for that account.
To create a production build locally, see the following React Native guides for more information on the necessary steps for Android and iOS.
These guides assume your project has android and/or ios directories containing the respective native projects. If you use Continuous Native Generation then you will need to run prebuild to generate the directories before following the guides.
Note: Following the guide below, in step four, when you build the release .aab for Android, run
./gradlew app:bundleRelease
from the android directory instead ofnpx react-native build-android --mode=release
.
Learn how to publish an app to Google Play Store by following the necessary steps manually.
Learn how to publish an app to Apple App Store by following the necessary steps manually.
Learn about the best practices for submitting your app to app stores.