Reputation: 343
How to use the Google publishing API, which Google Play Developer Console that will enable me to automatically upload an APK to Google Play the first time? Is there any working sample for this?
Upvotes: 2
Views: 3527
Reputation: 4252
You can use app release manager https://github.com/rakeshgirase/app-release-manager to publish APK file to Google Play store.
Upvotes: 1
Reputation: 3275
The Google Play Developer Publishing API lets you upload and publish apps, and perform other publishing-related tasks. It provides functions similar to those available to a developer through the Developer Console, such as:
Those tasks are performed using the new edits functionality, which take a transactional approach to making changes; you bundle several changes into a single draft edit, then commit the changes all at once.
Reference: https://developers.google.com/android-publisher/#publishing
The Google Play Developer Publishing API Edits methods allow you to prepare a number of changes to your Google Play app, then deploy them all at once. You do this by creating an edit, which holds all the changes you want to make to the app. You can only use this API to make changes to an existing app (that has at least one APK uploaded); thus, you will have to upload at least one APK through the Developer Console before you can use this API.
Reference: https://developers.google.com/android-publisher/edits
Upvotes: 0