Skip to main content

πŸ“¦ Builds

Requirements​

To test your app, your builds must:

  • include Storybook with completed 🧩 Integration
  • be runnable on simulators (Android: .apk, iOS: .app)

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