EAS Build
Edit page
EAS Build is a hosted service for building app binaries for your Expo and React Native projects.
EAS Build is a hosted Expo Application Services (EAS) service that builds app binaries (also called standalone apps) for your Expo and React Native projects.
EAS Build makes building your apps for distribution simple and easy to automate by providing defaults that work well for Expo and React Native projects out of the box, and by handling your app signing credentials for you (if you wish). It also makes sharing builds with your team easier than ever with internal distribution (using ad hoc and/or enterprise "universal" provisioning), deeply integrates with EAS Submit for app store submissions, and has first-class support for the expo-updates library.
EAS Build is also designed to work for any native project, whether or not you use Expo and React Native. It's the fastest way to get from npx create-expo-app or npx @react-native-community/cli@latest init to app stores.
Quick start
To build your app, run the following command:
-Â eas build --platform allThis command sends your project to EAS Build and produces installable binaries for Android and iOS. You can also build for one platform at a time by passing in --platform android or --platform ios as desired. For complete setup instructions, see Create your first build.
Key features
- Cloud builds for Android and iOS with consistent environments
- Automatically provision and manage app signing credentials or use your own
- Share internal distribution builds with a URL
- Automate builds with build profiles in eas.json (named sets of build settings) and integrations with EAS Workflows or CI pipelines
- Auto-submit successful builds to app stores via
--auto-submitand EAS Submit - First-class
expo-updatesintegration with per-profile channels and runtime version guidance - Reuse development builds across your team. When two team members run
eas build:devand the project fingerprint matches, the existing build is downloaded from EAS instead of creating a new one - Faster builds via dependency caching and custom cache paths
- Install builds and updates on devices with Expo Orbit
When to use EAS Build
| Scenario | Recommendation |
|---|---|
| Build production-ready binaries for app stores | |
| Share builds with testers via internal distribution | |
| Consistent builds across team members without local environment setup | |
| Automate builds from CI or EAS Workflows | |
| Managed app signing credentials | |
| Debugging native code locally |
Frequently asked questions
Can I use EAS Build with existing React Native projects?
Yes. EAS Build works with existing React Native projects created with npx react-native init or similar tools. See Overview of using Expo with existing React Native apps for more information.
Does EAS Build handle app signing credentials?
Yes. EAS Build can generate and manage Android keystores, iOS provisioning profiles and distribution certificates, or use credentials you provide. See App signing credentials for more information.
Can I run builds locally instead of in the cloud?
Yes. Use local builds with eas build --local to run builds on your machine. This is useful for debugging or for security policies that require local builds.
Can I use EAS Build with EAS Workflows or CI pipelines?
Yes. EAS Build integrates with EAS Workflows using the build job type. Add a build job to your workflow configuration, for example:
jobs: build_ios: type: build params: platform: ios
The build job supports builds for both platforms or conditional builds based on the branch:
jobs: build: type: build params: platform: all profile: ${{ github.ref_name == 'main' && 'production' || 'preview' }}
For more information and other usage examples, see the EAS Workflows build job.
EAS Build supports builds from GitHub and building on CI with any provider.
What build server infrastructure does EAS Build use?
Android builds run on Linux runners hosted in Google Cloud Platform, and iOS builds run on macOS runners hosted in Expo's macOS cloud. See Build server infrastructure.
Get started
It should only take a few minutes in total to get up and running for iOS and/or Android.
EAS Build can help share preview builds of your app with a single URL.
Learn how EAS Build can take your successful builds and handle uploading them to app stores automatically.
Automate version bumps so you never have to think about them again.
EAS Build is a hosted service, and it can also run on your own machine, for example, to debug or to comply with company security policies.
EAS Build is new and rapidly evolving, so we recommend getting familiar with the current limitations.