Usage | Synopsis |
---|---|
General | $ tns build ios [--for-device] [--release] |
Builds the project for iOS and produces an APP
or IPA
that you can manually deploy in the iOS Simulator or on device, respectively.
<% 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 build 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.<% } %>
--release
- If set, produces a release build. Otherwise, produces a debug build.--for-device
- If set, produces an application package that you can deploy on device. Otherwise, produces a build that you can run only in the native iOS Simulator. <% } %> <% if(isHtml) { %>
- You can run
$ tns build ios
only on OS X systems.
Command | Description |
---|---|
build android | Builds the project for Android and produces an APK that you can manually deploy on device or in the native emulator. |
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 ios | Synchronizes the latest changes in your project to iOS devices or the iOS Simulator. |
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. |
run | Runs your project on a connected device or in the native emulator for the selected platform. |
<% } %> |