Thanks to visit codestin.com
Credit goes to github.com

Skip to content

FanerYedermann/GooglePlayUpload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Summary

This is a simple helper script written in Python used for uploading Android apps to Google Play. It can also handle some image and track status updates.

Dependencies

The script requires the following modules to be installed:

pip install google-api-python-client
pip install httpimport
pip install oauth2client
pip install argparse

Usage

For help (with all the script can do):

py GooglePlayUpload.py [--help]
py GooglePlayUpload.py <command> [--help]

To upload an APK, APK with OBB or an AAB file to Google Play, respectively:

py GooglePlayUpload.py --packageName "com.myorg.myapp" --clientSecretUri filePathOrUrlToClientSecret.json uploadBuild --aabOrApkPath myApp.apk 
py GooglePlayUpload.py --packageName "com.myorg.myapp" --clientSecretUri filePathOrUrlToClientSecret.json uploadBuild --aabOrApkPath myApp.apk  --obbPath myApp.obb
py GooglePlayUpload.py --packageName "com.myorg.myapp" --clientSecretUri filePathOrUrlToClientSecret.json uploadBuild --aabOrApkPath myApp.aab

To upload an image for your app:

py GooglePlayUpload.py --packageName "com.myorg.myapp" --clientSecretUri filePathOrUrlToClientSecret.json uploadImage --imageType promoGraphic --imagePath myInfoGraphic.png

To promote a released app from one track to another

py GooglePlayUpload.py --packageName "com.myorg.myapp" --clientSecretUri filePathOrUrlToClientSecret.json --trackName 'internal' promoteTo --targetTrack 'alpha' --promoteStatus 'draft'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages