Google Play Console-如何删除已发布应用程序的更新

我很绝望,我在游戏商店发布了一个错误的应用程序更新是在新的游戏开发者控制台上。

不,我需要回滚我的更新,只是删除它和重新发布以前。

有两件事我不明白:

  • 如何从应用程序版本菜单中删除它
  • 重新出版上一本

救救我! 先谢谢你

124202 次浏览

In previous versions of Google Developer Console this could be possible unpublising the last .apk and enable to production your desired version

enter image description here

but now it can´t be possible.

Note that rollbacks aren’t supported due to the app versioning requirements of the Android platform. If you need to rollback, consider launching a previous APK with a new version number. However, this practice should be used only as a last resort, as users will lose access to new features and your old app may not be forward-compatible with your server changes or data formats, so be sure to run alpha and beta tests of your updates.

You can see the previous releases but you can´t enable again:

enter image description here

You need to create and publish a new release with a consecutive versionCode.

enter image description here

Just build old app version with new versionCode and old versionName and publish it

Reviving this but for those that are looking for something similar but for Android App Bundles.

As it's not as clear cut as when doing it for .apk.

For .aab's you need to:

  1. unpack the aab (its just a zip file)
  2. decode the AndroidManifest which is a binary proto message with protoc
  3. to decode you will need the .proto file found in the aapt2 tool
  4. alter the version code/version name of the decoded android manifest
  5. encode it again with protoc using the .proto files used in step 2
  6. pack the aab with zip, but be careful not to zip directories and to remove the path prefix that you might add unwillingly
  7. sign the zipped file with your store credentials, using jarsigner
  8. zipalign the signed zipped file
  9. rename the zipped, aligned and signed to the final .aab file

You can find these same steps in the following gist, with some of the work prepared before hand.

https://gist.github.com/Farious/e841ef85a8f4280e4f248ba8037ea2c0

I tried to avoid hardcoding anything and to bulletproof it, but it might not be yet.

Click on Create Release Like you release a new version, but instead of uploading an apk click "Add From Library", Here you will get all the previous versions of your app, select the version you want to rollback to, then release it after review button.

in play store classic version , developer console gives an option for Halt rollout . if you will Halt rollout than current version of your app , will be unpublished from play store. Now we can published new version of app.