Skip to main content

Run

Run on iOS simulator

Ensure the machine is properly setup (see Getting started - iOS Setup guide).

Install dependencies

yarn install

Install pods dependecies

yarn workspace native pod-install

In order to run the app in debug mode you need 2 terminals.

Start Metro bundler on one terminal using

yarn workspace native start

Build and run the app on iOS. The iOS simulator will be launched automatically.

yarn workspace native ios

See iOS Troubleshooting for more info.

Run on Android emulator

Ensure the machine is properly setup (see Getting started - Android Setup guide).

Install dependencies

yarn install

In order to run the app in debug mode you need 2 terminals.

Start Metro bundler on one terminal using

yarn workspace native start

Manually launch the Android emulator

emulator -avd Pixel_8_Pro_API_35

Run the app on Android with

yarn workspace native android

See Android Troubleshooting for more info.

Other commands

Run unit test suite

yarn workspace native test:unit

Run e2e tests

yarn workspace native e2e:ios
yarn workspace native e2e:android

Clean the whole project

yarn workspace native clean