diff --git a/docs/generated/packages/react-native/executors/run-android.json b/docs/generated/packages/react-native/executors/run-android.json index 9eadf2db19b9d..1b461d2277e8e 100644 --- a/docs/generated/packages/react-native/executors/run-android.json +++ b/docs/generated/packages/react-native/executors/run-android.json @@ -53,8 +53,7 @@ }, "listDevices": { "type": "boolean", - "description": "Lists all available Android devices and simulators and let you choose one to run the app", - "default": false + "description": "Lists all available Android devices and simulators and let you choose one to run the app" }, "binaryPath": { "type": "string", @@ -93,7 +92,6 @@ "activeArchOnly": { "type": "boolean", "description": "Build native libraries only for the current device architecture for debug builds.", - "examples": ["x86_64", "arm64-v8a"], "default": false }, "extraParams": { diff --git a/packages/react-native/src/executors/run-android/run-android.impl.ts b/packages/react-native/src/executors/run-android/run-android.impl.ts index f4d3bff0858c3..a73b3c197bbb9 100644 --- a/packages/react-native/src/executors/run-android/run-android.impl.ts +++ b/packages/react-native/src/executors/run-android/run-android.impl.ts @@ -105,6 +105,6 @@ function createRunAndroidOptions(options: ReactNativeRunAndroidOptions) { return getCliOptions( options, [...nxOptions, ...startOptions, ...deprecatedOptions], - ['appId', 'appIdSuffix'] + ['appId', 'appIdSuffix', 'deviceId'] ); } diff --git a/packages/react-native/src/executors/run-android/schema.json b/packages/react-native/src/executors/run-android/schema.json index 256fed692b7e8..41614a3ea6615 100644 --- a/packages/react-native/src/executors/run-android/schema.json +++ b/packages/react-native/src/executors/run-android/schema.json @@ -53,8 +53,7 @@ }, "listDevices": { "type": "boolean", - "description": "Lists all available Android devices and simulators and let you choose one to run the app", - "default": false + "description": "Lists all available Android devices and simulators and let you choose one to run the app" }, "binaryPath": { "type": "string", @@ -95,7 +94,6 @@ "activeArchOnly": { "type": "boolean", "description": "Build native libraries only for the current device architecture for debug builds.", - "examples": ["x86_64", "arm64-v8a"], "default": false }, "extraParams": {