Usage | Synopsis |
---|---|
Synchronize changes to all connected devices | $ tns livesync ios [--watch] |
Synchronize changes to a selected device | $ tns livesync ios --device <Device ID> [--watch] |
Synchronize changes to the iOS Simulator | $ tns livesync ios --emulator [--watch] |
Synchronizes the latest changes in your project to iOS devices or the iOS Simulator.
This command is deprecated. It will be removed in the next version of NativeScript CLI. Use the "run" command instead.
--watch
- If set, when you save changes to the project, changes are automatically synchronized to the connected device.--device
- Specifies the serial number or the index of the connected device to which you want to synchronize changes. To list all connected devices, grouped by platform, run$ tns device
. You cannot set--device
and--emulator
simultaneously.--emulator
- Synchronizes changes to the iOS Simulator. You cannot set--device
and--emulator
simultaneously.
<Device ID>
is the device index or identifier as listed by$ tns device
<% if(isHtml) { %>
- You cannot set
--device
and--emulator
simultaneously.
Command | Description |
---|---|
appstore | Lists applications registered in iTunes Connect. |
appstore upload | Uploads project to iTunes Connect. |
build android | Builds the project for Android and produces an APK that you can manually deploy on device or in the native emulator. |
build ios | Builds the project for iOS and produces an APP or IPA that you can manually deploy in the iOS Simulator or on device, respectively. |
build | Builds the project for the selected target platform and produces an application package that you can manually deploy on device or in the native emulator. |
debug android | Debugs your project on a connected Android device or in a native emulator. |
debug ios | Debugs your project on a connected iOS device or in a native emulator. |
debug | Debugs your project on a connected device or in a native emulator. |
deploy | Builds and deploys the project to a connected physical or virtual device. |
emulate android | Builds the specified project and runs it in a native Android emulator. |
emulate ios | Builds the specified project and runs it in the native iOS Simulator. |
emulate | You must run the emulate command with a related command. |
livesync | Synchronizes the latest changes in your project to devices. |
livesync android | Synchronizes the latest changes in your project to Android devices. |
run android | Runs your project on a connected Android device or in a native Android emulator, if configured. |
run ios | Runs your project on a connected iOS device or in the iOS Simulator, if configured. |
test init | Configures your project for unit testing with a selected framework. |
test android | Runs the tests in your project on Android devices or native emulators. |
test ios | Runs the tests in your project on iOS devices or the iOS Simulator. |
<% } %> |