chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
`project.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "mobile",
|
||||
//...
|
||||
"targets": {
|
||||
//...
|
||||
"run-android": {
|
||||
"executor": "@nx/react-native:run-android",
|
||||
"options": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
```bash
|
||||
nx run mobile:run-android
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
||||
##### Run on a specific device/simulator
|
||||
|
||||
To see all the available emulators, run command:
|
||||
|
||||
```bash
|
||||
emulator -list-avds
|
||||
```
|
||||
|
||||
The `deviceId` option allows you to launch your android app in a specific device/simulator:
|
||||
|
||||
```json
|
||||
"run-android": {
|
||||
"executor": "@nx/react-native:run-android",
|
||||
"options": {
|
||||
"deviceId": "Pixel_5_API_30"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
##### Run the debug/release app
|
||||
|
||||
The `mode` option allows to specify the build variant, such as `debug` or `release`.
|
||||
|
||||
```json
|
||||
"run-android": {
|
||||
"executor": "@nx/react-native:run-android",
|
||||
"options": {
|
||||
"mode": "release"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
Reference in New Issue
Block a user