Push Android Bundles to Google Play Store from cli
npm install android-publishUse with npx without install:
``sh-session`
$ npx android-publish [OPTIONS]
or install globally:
`sh-session
$ npm i -g android-publish
$ android-publish [OPTIONS]
`
android-publish will send your app bundle using the
Google Apis.
`
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
`
`sh-session
// 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
``