packages/react-native/docs/run-ios-examples.md
project.json:
{
"name": "mobile",
//...
"targets": {
//...
"run-ios": {
"executor": "@nx/react-native:run-ios",
"options": {}
}
}
}
nx run mobile:run-ios
The mode option allows to specify the xcode configuartion schema, such as Debug or Release.
"run-ios": {
"executor": "@nx/react-native:run-ios",
"options": {
"mode": "Release"
}
}
nx run-ios <app-name> --mode=Debug
The simulator option allows you to launch your iOS app in a specific simulator.
To see all the available simulators, run command:
xcrun simctl list devices available
"run-ios": {
"executor": "@nx/react-native:run-ios",
"options": {
"simulator": "iPhone 14 Pro (16.2)"
}
}
nx run-ios <app-name> --simulator="iPhone 14 Pro (16.2)"
The device option allows you to launch your iOS app in a specific device.
To see all the available devices, run command:
xcrun simctl list devices available
"run-ios": {
"executor": "@nx/react-native:run-ios",
"options": {
"device": "deviceName"
}
}
nx run-ios <app-name> --device="deviceName"
The udid option allows you to explicitly set device to use by udid.
To see all the available simulators and devices with udid, run command:
xcrun simctl list devices available
"run-ios": {
"executor": "@nx/react-native:run-ios",
"options": {
"udid": "device udid"
}
}
nx run-ios <app-name> --udid="device udid"