简体   繁体   中英

Android Developer : Remove older version from Play Store

I am an android developer and I just released a new version of my app. But due to some bugs, I need to pull out the latest version and revert back to the old version. Is there a way I can do this from the store ?

I 'Deactivated' the latest version and tried to 'Reactivated' the old version but get the following errors:

Error: New APK version is lower than previous APK version.

Is there a way I can delete the latest version and revert back to the old one ?

Thank you :)

通过更改versionCode再次上载旧二进制文件。

As Enigma says in your comment, you should really be using source control so you won't have this problem in the future. However, in this case there is a way to work around it if you have a copy of the old apk (even if you don't have the old source code).

This link tells you about reverse engineering an apk. If all you want to do is get the AndroidManifest.xml (where your version code should be), then APKTool should be enough for you. From there, update the versionCode as Enigma suggests to newer version than the one on the market, and push it to the market. If all goes well, your users will be using an older version.

If you have neither the apk of the old version, nor the source of the older version, there isn't really anything you can do. (Unless google keeps an archive of all versions of your app on their servers).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM