Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Publish to Google Play through command line

Is there any option to publish Android Application to Google Play using command line tool ? I have signed my application but I can't use web browser to publish it.

like image 379
Adam Śliwakowski Avatar asked Feb 21 '14 15:02

Adam Śliwakowski


People also ask

How do I upload to Google Play console?

Upload the App's APK File to Google PlayIn your browser, go to the address , click Developer Console and log in with your Android Developer account credentials. Click the Add New Application button to begin adding your app to Google Play. Select the language and the name of your app. Press the Upload APK button.

Can I upload APK to Google Play console?

Now we can not upload . apk files in the google play console, google has changed its policy from August 2021, to publish an app only with the Android App Bundle( . aab ) format. Click here for more details.

Can I publish on Google Play?

With the help of Google Play, you can publish an app that is compatible with all Android devices and add it as a new revenue stream for your company. Of course, once you've got your app ready to publish, the process of getting it on to the app stores can be a daunting one.


2 Answers

You could use fastlane and its supply tool, or a Jenkins CI server with Google Play Android Publisher Plugin for example.

You could also make use of the API (Google Play Developer Console > Settings > API access) and implement your own solution.

like image 143
EyesClear Avatar answered Oct 29 '22 17:10

EyesClear


There's also some npm packages that do it. The one I found to work is apkup

like image 22
Harel M Avatar answered Oct 29 '22 18:10

Harel M