Skip to content

Commit 7e32c80

Browse files
ikoevskaFatme Havaluova
authored and
Fatme Havaluova
committed
Fixed --justlaunch description
Added notes about showing the app output by default in the console
1 parent a00c813 commit 7e32c80

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/man_pages/project/testing/emulate-android.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Run in the native emulator | `$ tns emulate android [--avd <Name>] [--path <Dire
77
Run in Genymotion | `$ tns emulate android --geny <GenyName> [--path <Directory>] [--timeout <Seconds>] [--keyStorePath <File Path> --keyStorePassword <Password> --keyStoreAlias <Name> --keyStoreAliasPassword <Password>] [--release] [--justlaunch]`
88
Run in the default Android virtual device or in a currently running emulator | `$ tns emulate android [--path <Directory>] [--timeout <Seconds>] [--keyStorePath <File Path> --keyStorePassword <Password> --keyStoreAlias <Name> --keyStoreAliasPassword <Password>] [--release] [--justlaunch]`
99

10-
Builds the specified project and runs it in the native emulator from the Android SDK or Genymotion. <% if(isHtml) { %>If you do not select an Android virtual device (AVD) with the `--avd` option or a Genymotion virtual device with the `--geny` option, your app runs in the default AVD or a currently running emulator, if any. <% } %>
10+
Builds the specified project and runs it in the native emulator from the Android SDK or Genymotion. While your app is running, prints the output from the application in the console.<% if(isHtml) { %>If you do not select an Android virtual device (AVD) with the `--avd` option or a Genymotion virtual device with the `--geny` option, your app runs in the default AVD or a currently running emulator, if any. <% } %>
1111

1212
### Options
1313
* `--path` - Specifies the directory that contains the project. If not specified, the project is searched for in the current directory and all directories above it.
@@ -19,7 +19,7 @@ Builds the specified project and runs it in the native emulator from the Android
1919
* `--keyStorePassword` - Provides the password for the keystore file specified with --keyStorePath. You can use the `--keyStore*` options along with --release to produce a signed release build. You need to specify all `--keyStore*` options.
2020
* `--keyStoreAlias` - Provides the alias for the keystore file specified with `--keyStorePath`. You can use the `--keyStore*` options along with `--release` to produce a signed release build. You need to specify all `--keyStore*` options.
2121
* `--keyStoreAliasPassword` - Provides the password for the alias specified with `--keStoreAliasPassword`. You can use the `--keyStore*` options along with `--release` to produce a signed release build. You need to specify all `--keyStore*` options.
22-
* `--justlaunch` - If set, does not print application output on the console. Otherwise prints the application output on the console.
22+
* `--justlaunch` - If set, does not print the application output in the console.
2323

2424
### Attributes
2525
* `<Name>` is the name of the Android virtual device that you want to use as listed by `$ android list avd`

docs/man_pages/project/testing/run-android.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Run on all connected devices and running emulators | `$ tns run android [--keySt
77
Run on a selected connected device or running emulator | `$ tns run android --device <Device ID> [--keyStorePath <File Path> --keyStorePassword <Password> --keyStoreAlias <Name> --keyStoreAliasPassword <Password>] [--release] [--justlaunch]`
88
Start an emulator and run the app inside it | `$ tns run android --emulator [<Emulator Options>] [--keyStorePath <File Path> --keyStorePassword <Password> --keyStoreAlias <Name> --keyStoreAliasPassword <Password>] [--release] [--justlaunch]`
99

10-
Runs your project on a connected Android device or in a native Android emulator, if configured. This is shorthand for prepare, build and deploy.
10+
Runs your project on a connected Android device or in a native Android emulator, if configured. This is shorthand for prepare, build and deploy. While your app is running, prints the output from the application in the console.
1111

1212
### Options
1313
* `--device` - Specifies a connected device on which to run the app.
@@ -17,7 +17,7 @@ Runs your project on a connected Android device or in a native Android emulator,
1717
* `--keyStorePassword` - Provides the password for the keystore file specified with `--keyStorePath`. You can use the `--keyStore*` options along with `--release` to produce a signed release build. You need to specify all `--keyStore*` options.
1818
* `--keyStoreAlias` - Provides the alias for the keystore file specified with `--keyStorePath`. You can use the `--keyStore*` options along with `--release` to produce a signed release build. You need to specify all `--keyStore*` options.
1919
* `--keyStoreAliasPassword` - Provides the password for the alias specified with `--keStoreAliasPassword`. You can use the `--keyStore*` options along with `--release` to produce a signed release build. You need to specify all `--keyStore*` options.
20-
* `--justlaunch` - If set, does not print application output on the console. Otherwise prints the application output on the console.
20+
* `--justlaunch` - If set, does not print the application output in the console.
2121

2222
### Attributes
2323
* `<Device ID>` is the index or name of the target device as listed by `$ tns device android`

docs/man_pages/project/testing/run-ios.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Run on all connected devices | `$ tns run ios [--release] [--justlaunch]`
77
Run on a selected connected device | `$ tns run ios [--device <Device ID>] [--release] [--justlaunch]`
88
Start an emulator and run the app inside it | `$ tns run ios --emulator [<Emulator Options>] [--release]`
99

10-
Runs your project on a connected iOS device or in the iOS Simulator, if configured. This is shorthand for prepare, build, and deploy.
10+
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.
1111

1212
<% 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`<% } %>
1313
<% if((isConsole && isMacOS) || isHtml) { %>
@@ -17,7 +17,7 @@ Runs your project on a connected iOS device or in the iOS Simulator, if configur
1717
* `--device` - Specifies a connected device on which to run the app.
1818
* `--emulator` - If set, runs the app in a native emulator for the target platform, if configured. When set, you can also set any other valid combination of emulator options as listed by `$ tns help emulate ios`. You cannot use `--device` and `--emulator` simultaneously.
1919
* `--release` - If set, produces a release build. Otherwise, produces a debug build.
20-
* `--justlaunch` - If set, does not print application output on the console. Otherwise prints the application output on the console.
20+
* `--justlaunch` - If set, does not print the application output in the console.
2121

2222
### Attributes
2323
* `<Device ID>` is the index or name of the target device as listed by `$ tns device ios`

0 commit comments

Comments
 (0)