951 B
951 B
project.json:
{
"name": "mobile",
//...
"targets": {
//...
"run-android": {
"executor": "@nrwl/react-native:run-android",
"options": {}
}
}
}
nx run mobile:run-android
Examples
{% tabs %} {% tab label="Run on a specific device/simulator" %} To see all the avaiable emulators, run command:
emulator -list-avds
The deviceId option allows you to launch your android app in a specific device/simulator:
"run-android": {
"executor": "@nrwl/react-native:run-android",
"options": {
"deviceId": "Pixel_5_API_30"
}
}
{% /tab %}
{% tab label="Run the debug/release app" %}
The mode option allows to specify the build variant, such as debug or release.
"run-android": {
"executor": "@nrwl/react-native:run-android",
"options": {
"mode": "release"
}
}
{% /tab %} {% /tabs %}