Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google play, I accidentally uploaded production APK, now can't do beta testing

I first accidentally uploaded an APK to production in the google play developer console. Now when I click publish, it actually publishes my app to the play store, even though I have now uploaded to the alpha channel. there is no way to delete the production APK. I hope I don't need to delete the whole app project from google play?

like image 332
Korbbit Avatar asked Jan 11 '16 13:01

Korbbit


People also ask

How do I remove a production release from console?

Open Play Console. Select an app. Go to Release > Setup > Advanced settings. On the App Availability tab, select Unpublish.


2 Answers

I contacted google play support. And yes, if you accidentally upload to production, you can no longer test. This was their response:

Thanks for contacting Google Play about removing a published Production APK.

We don't currently support the functionality you're requesting. In this case, you would need to unpublish the current app and then publish a new app with a new package name. I apologize for any inconvenience this may cause.

We currently require that once a Production APK has been published, the app must always have an APK in Production. This requirement is in place so that we are in compliance with the DDA by ensuring that once an app has been made publicly available, that it remains available for any users who may have installed it. However, we can delete an app in certain circumstance when an app has been unpublished for more than 24 hours and no install was detected.

As you have already unpublished your app, there is nothing you can do more from your side. Instead, we will wait for another 24 hours to see whether the app has any installs. If there is no installs, I will proceed with app deletion and get back to you after 24 hours. Then, you will be able to upload the same package in Beta track.

Thanks for your cooperation.

like image 86
Korbbit Avatar answered Sep 20 '22 01:09

Korbbit


I have an improvement on top of goodKode's answer. On this date (Oct 2016) there is no minSdkVersion that Play Store would accept and would yield 0 compatible devices - 26 is not allowed and 25 was released in August.

There are other limiting fields in AndroidManifest that can be used to the same effect. I picked <uses-library android:name="some.bogus.feature.that.doesnt.exist" android:required="true"/> and when uploading the APK to production, Play Store reports happily that 0 devices are supported but allows the upload. Result: the app cannot be found via search but is accessible with the beta link.

A full list of filters can be found here: https://developer.android.com/google/play/filters.html

like image 34
DonSteep Avatar answered Sep 22 '22 01:09

DonSteep