nx/packages/react-native/docs/run-android-examples.md
Ikko Eltociear Ashimine e6d8437fa2
docs(react-native): update run-android-examples.md (#27771)
avaiable -> available

<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

<!-- If this is a particularly complex change or feature addition, you
can request a dedicated Nx release for this pull request branch. Mention
someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they
will confirm if the PR warrants its own release for testing purposes,
and generate it for you if appropriate. -->

## Current Behavior
<!-- This is the behavior we have today -->

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #
2024-11-15 12:36:45 -05:00

59 lines
946 B
Markdown

`project.json`:
```json
{
"name": "mobile",
//...
"targets": {
//...
"run-android": {
"executor": "@nx/react-native:run-android",
"options": {}
}
}
}
```
```bash
nx run mobile:run-android
```
## Examples
{% tabs %}
{% tab label="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"
}
}
```
{% /tab %}
{% tab label="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"
}
}
```
{% /tab %}
{% /tabs %}
---