Content-Length: 510977 | pFad | http://github.com/NativeScript/nativescript-cli/commit/9710ba8624f8e474f7387d338fbe4423e1a8a572

A7 docs: document the --aab flag in the commands help · NativeScript/nativescript-cli@9710ba8 · GitHub
Skip to content

Commit 9710ba8

Browse files
committed
docs: document the --aab flag in the commands help
1 parent 5115f07 commit 9710ba8

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

Diff for: docs/man_pages/project/testing/build.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Usage | Synopsis
3939
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4040
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
4141
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
42+
* `--aab` - Specifies that the command will produce and deploy an Android App Bundle.
4243
* `--force` - If set, skips the application compatibility checks and forces `npm i` to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiring `tns migrate`.
4344

4445
<% if(isHtml) { %>

Diff for: docs/man_pages/project/testing/debug-android.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ Initiates a debugging session for your project on a connected Android device or
1313

1414
Usage | Synopsis
1515
---|---
16-
Deploy on device/emulator, run the app and generate a Chrome DevTools link for debugging | `$ tns debug android`
17-
Deploy on device/emulator, run the app and stop at the first code statement | `$ tns debug android --debug-brk [--device <Device ID>] [--timeout <timeout>]`
18-
Deploy in the native emulator, run the app and stop at the first code statement | `$ tns debug android --debug-brk --emulator [--timeout <timeout>]`
19-
Attach the debug tools to a running app on device/emulator | `$ tns debug android --start [--device <Device ID>] [--timeout <timeout>]`
20-
Attach the debug tools to a running app in the native emulator | `$ tns debug android --start --emulator [--timeout <timeout>]`
16+
Deploy on device/emulator, run the app and generate a Chrome DevTools link for debugging | `$ tns debug android [--device <Device ID>] [--timeout <timeout>] [--aab]`
17+
Deploy on device/emulator, run the app and stop at the first code statement | `$ tns debug android --debug-brk [--device <Device ID>] [--timeout <timeout>] [--aab]`
18+
Deploy in the native emulator, run the app and stop at the first code statement | `$ tns debug android --debug-brk --emulator [--timeout <timeout>] [--aab]`
19+
Attach the debug tools to a running app on device/emulator | `$ tns debug android --start [--device <Device ID>] [--timeout <timeout>] [--aab]`
20+
Attach the debug tools to a running app in the native emulator | `$ tns debug android --start --emulator [--timeout <timeout>] [--aab]`
2121

2222
### Options
2323

@@ -29,6 +29,7 @@ Attach the debug tools to a running app in the native emulator | `$ tns debug an
2929
* `--no-watch` - If set, changes in your code will not be reflected during the execution of this command.
3030
* `--clean` - If set, forces the complete rebuild of the native application.
3131
* `--no-hmr` - Disables Hot Module Replacement (HMR). In this case, when a change in the code is applied, CLI will transfer the modified files and restart the application.
32+
* `--aab` - Specifies that the command will produce and deploy an Android App Bundle.
3233
* `--force` - If set, skips the application compatibility checks and forces `npm i` to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiring `tns migrate`.
3334

3435
<% if(isHtml) { %>

Diff for: docs/man_pages/project/testing/deploy.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Prepares, builds and deploys the project to a connected device or native emulato
1616

1717
Usage | Synopsis
1818
---|---
19-
Deploy on Android | `$ tns deploy android [--device <Device ID>] [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release]`
19+
Deploy on Android | `$ tns deploy android [--device <Device ID>] [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--aab]`
2020
<% if(isMacOS) { %>Deploy on iOS | `$ tns deploy ios [--device <Device ID>] [--release]`<% } %>
2121

2222
### Options for iOS
@@ -33,6 +33,8 @@ Deploy on Android | `$ tns deploy android [--device <Device ID>] [--key-store-pa
3333
* `--key-store-password` - Provides the password for the keystore file specified with `--key-store-path`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
3434
* `--key-store-alias` - Provides the alias for the keystore file specified with `--key-store-path`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
3535
* `--key-store-alias-password` - Provides the password for the alias specified with `--key-store-alias-password`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
36+
* `--aab` - Specifies that the command will produce and deploy an Android App Bundle.
37+
* `--force` - If set, skips the application compatibility checks and forces `npm i` to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiring `tns migrate`.
3638

3739
<% if(isHtml) { %>
3840

Diff for: docs/man_pages/project/testing/run-android.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ When running this command without passing `--release` flag, the HMR (Hot Module
1717

1818
Usage | Synopsis
1919
---|---
20-
Run on all connected devices and running emulators | `$ tns run android [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--justlaunch] [--env.*]]`
21-
Run on a selected connected device or running emulator. Will start emulator with specified `Device Identifier`, if not already running. | `$ tns run android --device <Device ID> [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--justlaunch] [--env.*]]`
22-
Start a default emulator if none are running, or run application on all connected emulators. | `$ tns run android --emulator [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--justlaunch] [--env.*]]`
20+
Run on all connected devices and running emulators | `$ tns run android [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--justlaunch] [--env.*]] [--aab]`
21+
Run on a selected connected device or running emulator. Will start emulator with specified `Device Identifier`, if not already running. | `$ tns run android --device <Device ID> [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--justlaunch] [--env.*]] [--aab]`
22+
Start a default emulator if none are running, or run application on all connected emulators. | `$ tns run android --emulator [--key-store-path <File Path> --key-store-password <Password> --key-store-alias <Name> --key-store-alias-password <Password>] [--release] [--justlaunch] [--env.*]] [--aab]`
2323

2424
### Options
2525

@@ -41,6 +41,7 @@ Start a default emulator if none are running, or run application on all connecte
4141
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4242
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
4343
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
44+
* `--aab` - Specifies that the command will produce and deploy an Android App Bundle.
4445
* `--force` - If set, skips the application compatibility checks and forces `npm i` to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiring `tns migrate`.
4546

4647
<% if(isHtml) { %>

Diff for: docs/man_pages/project/testing/run.md

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Run on a selected connected device or running emulator. Will start emulator with
5252
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
5353
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
5454
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
55+
* `--aab` - Specifies that the command will produce and deploy an Android App Bundle.
5556
* `--force` - If set, skips the application compatibility checks and forces `npm i` to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiring `tns migrate`.
5657

5758

Diff for: docs/man_pages/project/testing/test-android.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ Runs the tests in your project on connected Android devices and Android emulator
1313

1414
Usage | Synopsis
1515
------|-------
16-
Run tests on all connected devices | `$ tns test android [--watch] [--debug-brk]`
17-
Run tests on a selected device | `$ tns test android --device <Device ID> [--watch] [--debug-brk]`
16+
Run tests on all connected devices | `$ tns test android [--watch] [--debug-brk] [--aab]`
17+
Run tests on a selected device | `$ tns test android --device <Device ID> [--watch] [--debug-brk] [--aab]`
1818

1919
### Options
2020

2121
* `--watch` - If set, when you save changes to the project, changes are automatically synchronized to the connected device and tests are re-run.
2222
* `--device` - Specifies the serial number or the index of the connected device on which to run the tests. To list all connected devices, grouped by platform, run `$ tns device`. `<Device ID>` is the device index or identifier as listed by the `$ tns device` command.
2323
* `--debug-brk` - Runs the tests under the debugger. The debugger will break just before your tests are executed, so you have a chance to place breakpoints.
24+
* `--aab` - Specifies that the command will produce and deploy an Android App Bundle.
2425
* `--force` - If set, skips the application compatibility checks and forces `npm i` to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiring `tns migrate`.
2526

2627
<% if(isHtml) { %>

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/NativeScript/nativescript-cli/commit/9710ba8624f8e474f7387d338fbe4423e1a8a572

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy