Complete the code to initialize an Expo project with EAS Build support.
expo init my-app --[1]The managed workflow is the easiest way to start an Expo project and works well with EAS Build.
Complete the command to build your app for Android using EAS Build.
eas build --platform [1]To build an Android app with EAS Build, use --platform android.
Fix the error in the EAS Build configuration file to specify the build profile.
{
"build": {
"production": {
"releaseChannel": "default",
"distribution": "store",
"android": {
"buildType": "[1]"
}
}
}
}The app-bundle build type creates an Android App Bundle (.aab) recommended for Play Store uploads.
Fill both blanks to configure EAS Build to use a specific Apple team and enable auto-provisioning.
{
"ios": {
"teamId": "[1]",
"autoProvisioning": "[2]"
}
}Replace YOUR_TEAM_ID with your Apple Developer Team ID and set autoProvisioning to enabled to let EAS manage certificates automatically.
Fill all three blanks to create an EAS Build profile that targets iOS, uses the release channel 'prod', and uploads the build to the app store.
{
"build": {
"[1]": {
"releaseChannel": "[2]",
"distribution": "[3]"
}
}
}This profile builds for iOS, uses the 'prod' release channel, and uploads the build to the App Store.