Usage | Synopsis |
---|---|
Run on all connected devices | $ tns run ios [--release] [--justlaunch] |
Run on a selected connected device. Will start simulator with specified Device Identifier , if not already running. |
$ tns run ios [--device <Device ID>] [--release] [--justlaunch] |
Start an emulator and run the app inside it | $ tns run ios --emulator [--release] |
Runs your project on a connected iOS device or in the iOS Simulator, if configured. This is shorthand for prepare, build and deploy. While your app is running, prints the output from the application in the console and watches for changes in your code. Once a change is detected, it synchronizes the change with all selected devices and restarts/refreshes the application.
<% if(isConsole && (isWindows || isLinux)) { %>WARNING: You can run this command only on OS X systems. To view the complete help for this command, run $ tns help run ios
<% } %>
<% if((isConsole && isMacOS) || isHtml) { %>
<% if(isHtml) { %>> <% } %>IMPORTANT: Before building for iOS device, verify that you have configured a valid pair of certificate and provisioning profile on your OS X system. <% if(isHtml) { %>For more information, see Obtaining Signing Identities and Downloading Provisioning Profiles.<% } %>
--available-devices
- Shows a list of available simulators to be started and a list of already connected devices.--device
- Specifies a connected device/simulator to start and run the app.--emulator
- If set, runs the app in all available and configured ios simulators. It will start a simulator if none are already running.--justlaunch
- If set, does not print the application output in the console.--clean
- If set, forces rebuilding the native application.--no-watch
- If set, changes in your code will not be reflected during the execution of this command.--release
- If set, produces a release build. Otherwise, produces a debug build.
<Device ID>
is the index orDevice Identifier
of the target device as listed by$ tns run ios --available-devices
<% } %> <% if(isHtml) { %>
Before running the iOS Simulator, verify that you have met the following requirements.
- You have installed Xcode. The version of Xcode must be compatible with the ios-sim-portable npm package on which the NativeScript CLI depends. For more information, visit https://www.npmjs.org/package/ios-sim-portable.
- You can run
$ tns run ios
only on OS X systems. - You cannot use
--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. |
run android | Runs your project on a connected Android device or in a native Android emulator, if configured. |
run | Runs your project on a connected device or in the native emulator for the selected platform. |
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. |
<% } %> |