Skip to main content

๐Ÿ“ฆ Builds

Requirementsโ€‹

To test your app, your builds must:

Build Typesโ€‹

Select a build type based on your chosen testing command:

Features

These builds include JavaScript bundle, containing all the code needed to run the app

Compatible Testing Commands

๐Ÿงช Local Builds๐Ÿงช Expo Cloud Builds


How to build?

Choose your preferred build method:

Build Profile

Add the following build profile to your eas.json:

eas.json
{
"build": {
"simulator-preview": {
"android": { "buildType": "apk" },
"ios": { "simulator": true }
}
}
}
EAS Build Profile

Pass this profile name to EAS build command with --profile option

Build Command

Run this command to build your app on EAS servers:

Terminal
npx eas-cli build --profile simulator-preview --platform all
note

Use --platform option to select only the platforms you plan to test