Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Unpublished Android Application from Google Play

I have just uploaded an application to the play store . Its in draft mode right now. Is it possible to test it on mobile device by visiting the Play store?

I mean before publishing it, is it possible to get the play store link so that I can download from Play store instead and test on a mobile device, from an account which I have added to the test users list?

like image 238
Vivek Agrawal Avatar asked Jul 09 '26 09:07

Vivek Agrawal


2 Answers

If you need to test the draft application run a signed apk on your device. The keystore used should be same as in the uploaded apk at google. If you want to debug the application you can change the default keystore of eclipse to a custom one then:

Change the keystore password/key password and key alias following the instructions here

Then Change Eclipse's Preferences -> Android -> Build -> Custom keystore and give path to your new custom keystore.

like image 164
Parvaz Bhaskar Avatar answered Jul 12 '26 02:07

Parvaz Bhaskar


You cannot access the application page on Google Play until the app is published (even then it takes a few hours to turn up).

Other than that, Google Play links are always in the format:

https://play.google.com/store/apps/details?id=<your package name>

You can sideload (install from adb, or directly from an apk instead of Google Play) a draft apk, and if it is signed right, you can use it to test In App Billing etc.

like image 39
Raghav Sood Avatar answered Jul 12 '26 02:07

Raghav Sood