fix(react-native): remove listDevices default value for run-android (#16410)
This commit is contained in:
parent
1743ff10ed
commit
9c9abaa098
@ -53,8 +53,7 @@
|
|||||||
},
|
},
|
||||||
"listDevices": {
|
"listDevices": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Lists all available Android devices and simulators and let you choose one to run the app",
|
"description": "Lists all available Android devices and simulators and let you choose one to run the app"
|
||||||
"default": false
|
|
||||||
},
|
},
|
||||||
"binaryPath": {
|
"binaryPath": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@ -93,7 +92,6 @@
|
|||||||
"activeArchOnly": {
|
"activeArchOnly": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Build native libraries only for the current device architecture for debug builds.",
|
"description": "Build native libraries only for the current device architecture for debug builds.",
|
||||||
"examples": ["x86_64", "arm64-v8a"],
|
|
||||||
"default": false
|
"default": false
|
||||||
},
|
},
|
||||||
"extraParams": {
|
"extraParams": {
|
||||||
|
|||||||
@ -105,6 +105,6 @@ function createRunAndroidOptions(options: ReactNativeRunAndroidOptions) {
|
|||||||
return getCliOptions<ReactNativeRunAndroidOptions>(
|
return getCliOptions<ReactNativeRunAndroidOptions>(
|
||||||
options,
|
options,
|
||||||
[...nxOptions, ...startOptions, ...deprecatedOptions],
|
[...nxOptions, ...startOptions, ...deprecatedOptions],
|
||||||
['appId', 'appIdSuffix']
|
['appId', 'appIdSuffix', 'deviceId']
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -53,8 +53,7 @@
|
|||||||
},
|
},
|
||||||
"listDevices": {
|
"listDevices": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Lists all available Android devices and simulators and let you choose one to run the app",
|
"description": "Lists all available Android devices and simulators and let you choose one to run the app"
|
||||||
"default": false
|
|
||||||
},
|
},
|
||||||
"binaryPath": {
|
"binaryPath": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@ -95,7 +94,6 @@
|
|||||||
"activeArchOnly": {
|
"activeArchOnly": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Build native libraries only for the current device architecture for debug builds.",
|
"description": "Build native libraries only for the current device architecture for debug builds.",
|
||||||
"examples": ["x86_64", "arm64-v8a"],
|
|
||||||
"default": false
|
"default": false
|
||||||
},
|
},
|
||||||
"extraParams": {
|
"extraParams": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user