Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to deploy debug APKs on the play store?

I'd like to publish debug versions of my app to the Google Play Store for alpha/beta testing

  • would have a different package name than the production app
  • would never be published to the production channel, alpha/beta channels only

The idea would be that I could distribute fake, dev, staging applications alongside our prod application

like image 285
ZakTaccardi Avatar asked May 17 '16 19:05

ZakTaccardi


People also ask

Can we upload debug APK to playstore?

Before you start If you have the Release apps to testing tracks permission, you're authorized to upload APKs for internal sharing by default. Version codes don't need to be new or unique, and you can reuse version codes for app bundles or APKs that you're sharing. You can upload and share debuggable APKs.

Can I install app debug APK?

If you copy the app-debug. apk for output directory, the app will not be able to install. Reason: app-debug file will have all the debugging tools installed in that apk which are used for debugging in Android Studio, and you even notice that the app size is also high than the usual.

How do I debug Google Play Store app?

You can start a debugging session as follows: Set some breakpoints in the app code. In the toolbar, select a device to debug your app on from the target device drop-down menu. If you don't have any devices configured, then you need to either connect a device via USB or create an AVD to use the Android Emulator.

How do I enable debug on APK?

However, you need to make sure you're using an APK with debugging enabled. To start debugging an APK, click Profile or debug APK from the Android Studio Welcome screen. Or, if you already have a project open, click File > Profile or Debug APK from the menu bar.


2 Answers

The answer to your question is no.

As per the alternatives:

The only way to test your debug version is to generate an apk and send it to your friends in some way and have them install it on their phones or to physically connect their phones and install the app on them

like image 183
Vucko Avatar answered Nov 15 '22 00:11

Vucko


No, you can't.

Please read the developer agreement to get the details.

like image 29
Andrey Kopeyko Avatar answered Nov 15 '22 00:11

Andrey Kopeyko