android-publish
v1.0.11
Published
Push Android Bundles to Google Play Store from cli
Downloads
15
Maintainers
Readme
Installation
Use with npx without install:
$ npx android-publish [OPTIONS] <path to .aab file>
or install globally:
$ npm i -g android-publish
$ android-publish [OPTIONS] <path to .aab file>
How it works
android-publish
will send your app bundle using the
Google Apis.
Usage
Push Android Bundles to Google Play Store from cli
USAGE
$ android-push [OPTIONS] BUNDLE
ARGUMENTS
BUNDLE Android bundle file
OPTIONS
-h, --help Show help
-k, --key=api.json (required) Google service account key file
-p, --packageName=com.example.app (required) App package name
-q, --quiet Print only error messages
-t, --track=(internal|alpha|beta|production) (required) Publish track
-v, --version Show Android Publish version
// Publish app com.example.app to "internal" track.
android-publish -p com.example.app -k api.json -t internal - ./app/release/release.aab
// Display version information
android-publish -v
// Show help
android-publish -h