Remove obsolete beta version from Google Play

21,414

Solution 1

Using a few hints you left on your stack overflow profile I think I've deduced what your app is and what is the problem. I won't mention the app name here as you seemed to want to keep the question general.

The problem is the subtle difference between a superceded release and a shadowed release. Your beta APK is partially shadowed. The beta APK is targeted at users on SDK9+, whereas your production APK is targeted at users on SDK16+. This means while most users will get your production APK, users on older devices (SDK 9-15) will get your beta. As a result, your beta is still technically active, and so you getting the email is correct.

So now the question is what can you do to deactivate it? The answer is a bit confusing in the UI, but makes sense once you think about it. You need to

  • create a release with NO (0!) APKs in it
  • publish that release to the beta track

This tells Play that you deliberately want there to be no active APKs in Beta. These users will still get production APKs, but your old beta APK will no longer be active. We're sorry this got confusing, you were caught by a subtle edge case.

Solution 2

Just for information of anyone visiting this thread, here is what I did to stop beta appearing on my Google Play Store app listing.

At first, we launched with releases on beta track. Then, when the app was stable with enough feature set, we decided to go for full production. We decided to promote the latest beta release to production track (note we didn't place any apk/bundle on production track just promoted the beta release to production). Then we started to place every new release apk/bundle on production track and this gave us Superseded by production on beta track. But still we faced the issue of {App Name} (Beta) appearing in the application title on Google Play Store listing.

Then to remove this (Beta) from application title we had to go into Google Play Store App listing -> Release Management -> App Releases -> Beta Track -> Click on Manage Testers -> Click on Remove Testers. A confirmation dialog will open then click "Yes".

Removing the testers solved the problem.

Solution 3

Suppose you had released beta app (Open testing) with v1.0.0, but your production is pointing to newer version. Now you want to discontinue that beta programme having older app.

I have found two ways of discontinuing beta programme in new updated play console.

  1. Go to Open Testing settings of your app. You can see the countries where your beta programme is available. Now unselect all the countries except one country as one country is mandatory. For that mandatory conutry, you can keep any country which you feel like that country is not required for you app.

  2. Release a new version in Open Testing track with no apk or bundle in it. Yes you can! Play console will allow you to release new beta version without having any app in it.

Solution 4

For new console -

  1. Go to open testing.
  2. Click on the pause track button in the upper right corner.
  3. Click on the pause track button on the confirmation dialog.
  4. Congratulations beta version is no longer available to download!
Share:
21,414
Magnus
Author by

Magnus

I have delivered value. But at what cost? Bachelor of Science degree in Computer Engineering. ✪ Started out on ATARI ST BASIC in the 1980's, writing mostly "Look door, take key" type games.    ✪ Spent a few years in high school writing various small programs for personal use in Delphi.    ✪ Learned PHP/SQL/HTML/JS/CSS and played around with that for a few years.    ✪ Did mostly Android and Java for a few years.    ✪ Graduated from Sweden Mid University with a BSc in Computer Engineering. At this point, I had learned all there was to know about software development, except where to find that darn "any" key...    ✪ Currently working with Flutter/Dart and Delphi (again).   

Updated on March 20, 2021

Comments

  • Magnus
    Magnus over 3 years

    About two years ago I published a version of one of my apps as a beta testing version for a limited number of users, using the "Beta" version in Google Play Developer Console. I didn't promote that version to production, instead I just released another version in the production track.

    That old beta is still lingering around, and I can't find a way to get rid of it. I even got an email from Google today saying

    Hello Google Play Developer,

    This is a reminder that starting November 1, 2018, updates to apps and games on Google Play will be required to target Android Oreo (API level 26) or higher. After this date, the Play Console will prevent you from submitting new APKs with a targetSdkVersion less than 26.

    Configuring your app to target a recent API level ensures that users benefit from significant security and performance improvements, while still allowing your app to run on older Android versions (down to the minSdkVersion).

    Action required

    Please ensure that your apps are configured to target at least Android 8.0 (API level 26) by November 1, 2018. For technical advice on how to change your app's target API level to meet these requirements, refer to the migration guide.

    Affected apps

    The apps included below have one or more APKs—in production or testing tracks—that aren't currently targeting API level 26 or higher. Apps are listed with the maximum version code and corresponding targetSdkVersion. If you have more than 20 apps that could be affected in your account, please check the Play Console for a full list.

    com.mypackage.myapp       73     23

    The app referred to on the bottom line is the two year old beta version, with a version number of 73 and targeting API 23. The one in production was updated just a few days ago and targets API 28.

    Is there any way at all to get rid of that old beta version from Google Play Developer Console?