Use Google Play Publishing API upload and publish apps, and perform other publishing-related tasks.
541
Google Play Store Publisher & APK Downloader Script Uploads an Android App Bundle (AAB) to Google Play Console, assigns it to a track, and polls Google Play until the compiled APKs are ready to be downloaded.
The Docker image is configured as an executable. Pass arguments directly after the image name, just like running python main.py.
$ docker pull splashtopandroid/android-publisher
$ docker run splashtopandroid/android-publisher -h
docker run --rm \
-e GOOGLE_APPLICATION_CREDENTIALS=/app/service-account.json \
-v "/path/to/service-account.json:/app/service-account.json:ro" \
-v "$(pwd)/output:/app/output" \
play-publisher:latest \
--aab /app/build/app-release.aab \
--package-name com.example.yourapp \
--output /app/output/signed-app.apk
docker run --rm \
-e GOOGLE_APPLICATION_CREDENTIALS=/app/service-account.json \
-v "/path/to/service-account.json:/app/service-account.json:ro" \
-v "$(pwd)/output:/app/output" \
play-publisher:latest \
--aab /app/build/app-release.aab \
--package-name com.example.yourapp \
--track beta
docker run --rm \
-e GOOGLE_APPLICATION_CREDENTIALS=/app/service-account.json \
-v "/path/to/service-account.json:/app/service-account.json:ro" \
-v "$(pwd)/output:/app/output" \
play-publisher:latest \
--package-name com.example.yourapp \
--output /app/output/latest.apk
Content type
Image
Digest
sha256:0e42a4b47…
Size
62.7 MB
Last updated
2 months ago
docker pull splashtopandroid/android-publisher