如何在 Google Play 管理中心 reject/cancel/delete Beta 版

How to reject/cancel/delete a Beta release in the Google Play Console

我在 Google Play 控制台 (v1.0.8) 中发布了一个应用程序的 Open Track Beta 版。

然后我做了下一个版本(v1.0.9)的正式发布,

没有将 v1.0.8 推广到生产环境,也没有首先通过 Beta 版发布 v1.0.9。

现在我有我想要的生产版本 (v1.0.9),但我在 Beta 轨道中仍然有这个早期版本。
而且我的 Beta 测试人员似乎不断推出 Beta 版本。
我已经明确进入并完成了管理测试人员 > 删除测试人员,但这似乎还不够。

remove/delete/cancel/reject 如何从 Google Play 管理中心的 Open Track 获得 Beta 版本?

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.