Deployment automation in the Android Developer Console

Are there libraries that can help me deploy the Google Play Developer Console for Android?

I would like to automatically:

  • Download New APK
  • Update text for Recent Changes
  • Submit the form, that is, click "Save"

I use Python for my automation, but any other language will be useful.

+6
source share
3 answers

Google will release in July 2014 a new API for automatic deployment to Alpha / Beta and production channels!

look here

Features Api:

  • Download new versions of the application. Releasing apps by assigning APK various tracks (alpha, beta, staging or production)
  • Create and modify shopping lists on Google Play, including localized text and graphics, and snapshots of multiple devices.
+3
source

We are developing an open source tool to automate the deployment of an application on Google Play: https://github.com/onepf/AppDF/tree/master/tools/uploader

You can check its code, which does exactly what you need by encapsulating the webkit control and working with it.

+5
source

If you are using Android Studio or IntelliJ IDEA, I created an open source plugin. Droidlane

It uses google api to download apk, as well as recent change text. You can define multiple profiles or groups of apks with one click. Recent change text also supports multiple languages. The entire certificate is encrypted in AES using your password. It is pretty safe.

You can search for the plugin in your IDE or download the JetBrains website .

See https://github.com/Jintin/DroidLane for more information. You will always be happy if you have any questions or suggestions. Thanks.

+2
source

Source: https://habr.com/ru/post/921581/


All Articles