Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

b86a166 · May 19, 2017

History

History
36 lines (29 loc) · 2.48 KB

File metadata and controls

36 lines (29 loc) · 2.48 KB

debug

Usage Synopsis
<% if((isConsole && isMacOS)

Debugs your project on a connected device or in a native emulator. <% if(isMacOS) { %>You must specify the target platform on which you want to debug.<% } %> The command will prepare, build and deploy the app when necessary. By default listens for changes in your code, synchronizes those changes and refreshes the selected device.

<% if((isConsole && isMacOS) || isHtml) { %>### Attributes <Platform> is the target mobile platform for which you want to debug your project. You can set the following target platforms.

  • android - Debugs your project on a connected Android device or Android emulator.
  • ios - Debugs your project on a connected iOS device or in a native iOS emulator.<% } %>

<% if(isHtml) { %>

Command Limitations

  • You can run $ tns debug ios only on OS X systems.

Related Commands

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 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.
deploy Builds and deploys the project to a connected physical or virtual device.
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.
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.
<% } %>