EAS Build and Deployment Workflow
Expo Application Services (EAS) is the next generation of Expo's cloud services. It allows you to build binary apps in the cloud for both Expo Go and bare React Native projects.
Chapter 1: Introduction to EAS
EAS Build replaces the classic expo build. It runs a full native build process in the cloud, giving you more control and support for custom native code.
Chapter 2: Configuring eas.json
The eas.json file controls your build profiles (development, preview, production).
``json
{
"build": {
"preview": {
"android": {
"buildType": "apk"
},
"ios": {
"simulator": true
}
},
"production": {}
}
}
`
Chapter 3: Managing Credentials
EAS handles signing certificates and provisioning profiles for you, or you can upload your own.
Chapter 4: EAS Submit
Automatically submit your built binaries to the Apple App Store and Google Play Store with a single command:
eas submit`.
EAS Build replaces the classic
expo build. It runs a full native build process in the cloud, giving you more control and support for custom native code.Chapter 2: Configuring eas.json
The eas.json file controls your build profiles (development, preview, production).
``json
{
"build": {
"preview": {
"android": {
"buildType": "apk"
},
"ios": {
"simulator": true
}
},
"production": {}
}
}
`
Chapter 3: Managing Credentials
EAS handles signing certificates and provisioning profiles for you, or you can upload your own.
Chapter 4: EAS Submit
Automatically submit your built binaries to the Apple App Store and Google Play Store with a single command:
eas submit`.
{
"build": {
"preview": {
"android": {
"buildType": "apk"
},
"ios": {
"simulator": true
}
},
"production": {}
}
}
Chapter 3: Managing Credentials
EAS handles signing certificates and provisioning profiles for you, or you can upload your own.
Chapter 4: EAS Submit
Automatically submit your built binaries to the Apple App Store and Google Play Store with a single command:
Automatically submit your built binaries to the Apple App Store and Google Play Store with a single command: