This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.

Run and control an app

Edit page

Install an app on EAS Simulator and control it with agent-device, Appium, Argent, or the iOS browser preview.


The remote device starts blank unless the start command receives an application source. You can ask EAS CLI to install and launch an EAS Build, an application archive, or Expo Go while the session starts. You can also start a blank device and install a local simulator- or emulator-compatible build through its controller.

Choose the build type based on what you need:

GoalBuild type
Inspect a fixed build or capture evidenceLocal release build or EAS simulator build
See current source changes with Fast RefreshDevelopment build connected to Metro
Test a compatible project without native codeExpo Go connected to Metro
Use an existing EAS artifactMatching iOS Simulator build or Android APK

Choose a session type

Choose how you plan to control the device before starting the session. Pass the session type explicitly. On iOS, agent-device, Appium, and Argent sessions include both the selected controller and a web preview. Use web-preview-only when you only need the web preview without programmatic control.

Session typeStart optionUse case
agent-device--type agent-deviceAgent-native device control and installation
Appium--type appiumExisting Appium clients and test suites
Argent--type argentArgent device tools and Model Context Protocol (MCP) integration
Web preview only--type web-preview-onlyInteractive iOS stream without programmatic control

Find the app identifier

Read the resolved app configuration before installing a build:

Terminal
npx expo config --json

Use ios.bundleIdentifier for iOS commands and android.package for Android commands. Configure the missing value in the app config before creating the build.

Install an EAS Build artifact

Create an installable artifact for each platform in an EAS Build profile. iOS requires ios.simulator: true, and Android requires an APK build:

eas.json
{ "build": { "remote-device": { "ios": { "simulator": true }, "android": { "buildType": "apk" } } } }

Build the app before starting EAS Simulator. A build can take long enough for an idle simulator session to lose its controller tunnel:

Terminal
eas build --platform ios --profile remote-device --non-interactive

Record the build ID from the command output, or find a completed simulator build:

Terminal
eas build:list --platform ios --simulator --status finished --json --non-interactive

After the build is ready, pass its ID to simulator:start. EAS downloads, installs, and launches the build before the session becomes ready:

Terminal
eas simulator:start --platform ios --type agent-device --build-id <build-id> --name "Release build review" --non-interactive

You can pass an application archive URL instead of a build ID:

Terminal
eas simulator:start --platform ios --type agent-device --application-archive-url "https://expo.dev/artifacts/eas/<artifact>.tar.gz" --name "Release build review" --non-interactive

--build-id and --application-archive-url are mutually exclusive. The iOS build must target the Simulator.

For Android, create and install the APK from the same profile:

Terminal
eas build --platform android --profile remote-device --non-interactive
eas simulator:start --platform android --type agent-device --build-id <build-id> --name "Release build review" --non-interactive

The Android build must produce an APK. Android sessions support controller-driven interactions and screenshots, but not the live browser preview.

If the session is already running, agent-device can still download an artifact into the active remote virtual machine (VM):

Terminal
eas simulator:exec npx agent-device@latest install-from-source "https://expo.dev/artifacts/eas/<artifact>.tar.gz" --platform ios
eas simulator:exec npx agent-device@latest open com.example.app --platform ios

Install a local build with agent-device

For a local iOS simulator .app bundle, install uploads the build through the controller:

Terminal
eas simulator:start --platform ios --type agent-device --name "Local build review" --non-interactive
eas simulator:exec npx agent-device@latest install com.example.app ./path/to/MyApp.app --platform ios
eas simulator:exec npx agent-device@latest open com.example.app --platform ios

Large local builds take longer because the client uploads them from your machine. Prefer install-from-source when an EAS artifact URL is available.

For a local Android APK, use the same command with the Android package, APK path, and --platform android.

Use Expo Go

For a project that is compatible with Expo Go, start Metro with a public tunnel before creating the simulator session. The remote device must be able to reach Metro when EAS CLI opens the URL:

Terminal
EXPO_UNSTABLE_TUNNEL_V2=1 npx expo start --tunnel
eas simulator:start --platform ios --type agent-device --expo-go --open-url "exp://<metro-host>" --name "Expo Go live preview" --non-interactive

EAS CLI selects the Expo Go version that matches the current project's Expo SDK. Pass --sdk-version <version> with --expo-go only when you need to override the detected version. The --open-url value must be an Expo URL that the installed app understands; do not pass the browser's webPreviewUrl.

Use a development build for live changes

Live iteration requires a development build with expo-dev-client. The development build loads JavaScript from Metro instead of relying only on the bundle embedded at build time.

If the machine cannot create the native build locally, configure an EAS profile with both developmentClient: true and ios.simulator: true:

eas.json
{ "build": { "development-simulator": { "developmentClient": true, "ios": { "simulator": true } } } }

Create the build before starting the simulator session:

Terminal
eas build --platform ios --profile development-simulator --non-interactive

For Android, the same profile produces an installable APK when you run the build command with --platform android. No additional Android configuration is required.

Start Metro with a public tunnel that the remote development client can reach. Start Metro first because EAS CLI opens the URL while preparing the session:

Terminal
EXPO_UNSTABLE_TUNNEL_V2=1 npx expo start --tunnel

Pass the EAS Build ID and development-client URL to simulator:start. EAS installs and launches the build, then opens the URL before the session becomes ready:

Terminal
eas simulator:start --platform ios --type agent-device --build-id <build-id> --open-url "<scheme>://expo-development-client/?url=<encoded-public-metro-url>" --name "Checkout live edits" --non-interactive

Replace <scheme> with the custom scheme from the app config and URL-encode the public Metro URL when needed. Repeat --launch-arg <value> for any launch-time arguments the app requires.

Keep exactly one Metro process running. After the first bundle loads, Fast Refresh sends source edits to the remote app.

The start command can install a development build only from a remote EAS Build or an application archive. For a local development .app, start a blank agent-device session, upload it with install, and use agent-device to open the development-client URL.

For the complete tested development-client sequence, install the EAS Simulator skill.

Run controller commands with simulator:exec

simulator:exec is controller-neutral. It loads the active session's connection environment and runs the command that follows. Use the command pattern for the controller selected when the session started:

Terminal
eas simulator:exec npx agent-device@latest <command> [args...]

Control the app with agent-device

For installation and broader controller guidance, see agent-device and Expo.

Use these commands with a session started with --type agent-device:

Terminal
eas simulator:exec npx agent-device@latest apps --platform ios
eas simulator:exec npx agent-device@latest open com.example.app --platform ios

Inspect the interactive accessibility tree:

Terminal
eas simulator:exec npx agent-device@latest snapshot -i

The snapshot returns references such as @e1 and @e2. Use press to activate an element:

Terminal
eas simulator:exec npx agent-device@latest press @e2
eas simulator:exec npx agent-device@latest press 'label="Continue"'

The action is named press, not tap or click.

Enter text and capture a screenshot:

Terminal
eas simulator:exec npx agent-device@latest fill @e4 "hello@example.com"
eas simulator:exec npx agent-device@latest screenshot ./artifacts/result.png

The screenshot is downloaded to the machine running the command.

Record a flow:

Terminal
eas simulator:exec npx agent-device@latest record start
# Interact with the app
eas simulator:exec npx agent-device@latest record stop ./artifacts/flow.mp4

Other useful controller commands include scroll, gesture, logs, network, and perf. Read the version-matched help through the active session:

Terminal
eas simulator:exec npx agent-device@latest --help
eas simulator:exec npx agent-device@latest help workflow

Control the app with Argent

For installation and broader controller guidance, see Argent and Expo.

Install the Argent CLI:

Terminal
npm install --global @swmansion/argent

Start an Argent-backed session with:

Terminal
eas simulator:start --platform ios --type argent --name "Checkout flow review" --non-interactive

Use these commands with a session started with --type argent. simulator:exec supplies ARGENT_TOOLS_URL and ARGENT_AUTH_TOKEN from .env.eas-simulator, so argent link is not required for commands invoked this way:

Terminal
eas simulator:exec argent run reinstall-app --udid <udid> --bundleId com.example.app --appPath ./MyApp.app
eas simulator:exec argent run <tool> [args...]

Argent uses its own tools and app installation commands. An Argent session does not also provision an agent-device daemon, so do not run agent-device commands against it.

Control the app with Appium

Start an Appium-backed session when you want to connect an existing Appium client or test suite:

Terminal
eas simulator:start --platform ios --type appium --name "Checkout flow tests" --non-interactive
eas simulator:exec <appium-client> [args...]

EAS CLI writes APPIUM_URL and APPIUM_CAPS to .env.eas-simulator. simulator:exec loads those values before running the Appium client command. Appium sessions do not also provision agent-device or Argent.

Inspect session activity

Sessions that use agent-device or Argent record controller activity. Show the activity recorded so far for the current session:

Terminal
eas simulator:events

In another terminal, follow new activity while you or an agent drives the device:

Terminal
eas simulator:events --follow

The follow command exits when the session ends. Use --id <session-id> to inspect another session, or --json to return raw event records for an agent or script. --json and --follow cannot be used together.

Session activity describes controller operations and interactions. It does not replace application runtime logs.

Use the iOS browser preview

Supported iOS sessions return a webPreviewUrl. Open it in a desktop browser while the session is active.

When handing the preview to another person, add --max-duration-minutes <minutes> when starting the session so it stops automatically. You can also add --max-idle-time-minutes <minutes> to stop after a period without session activity. Tell the viewer when the session will stop, and remember that it continues consuming usage until it stops.

Stop when finished

Terminal
eas simulator:stop

If you started Metro, stop that process too.