Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

You can't rollout this release because it doesn't allow any existing users to upgrade to the newly added app bundles

I made am update for my app and was trying to release it, but I got this error. I saw articiles saying that this could be because my API levels and such were different or somehting, but everything is exactly the same-

First release 0.41

enter image description here

Update 0.5

enter image description here

I build the app in kivy, and made the apk with buildozer, and converted it to aab with a telegram converter.

How do I fix this?

like image 613
Air Admirer Avatar asked Aug 31 '25 22:08

Air Admirer


2 Answers

Your 0.5 version 8215 has a lower versionCode then the 0.41 version 82141. The updated app should have a higher versionCode then the current one

like image 115
DHoogerwaard Avatar answered Sep 03 '25 15:09

DHoogerwaard


The version code for the app bundle that you're uploading is lower (or lesser) than the current app bundle on your play store. Check the version code of the app bundle on play store and increase it. That should be the version code of the app bundle that you're uploading.

like image 32
Joseph N Avatar answered Sep 03 '25 15:09

Joseph N