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

3

22

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?

Sorcerer answered 5/1, 2022 at 9:44 Comment(0)
B
52

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

Botany answered 5/1, 2022 at 9:59 Comment(3)
Oh, what do I do about that?Sorcerer
In your app/build.gradle file there should be versionName and versionCode specified. versionName is in your case 0.5 and versionCode 8251. The versionCode should be higher then the current Play store appBotany
Why cant Google give a straightforward error!? :sJodoin
T
4

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.

Tendinous answered 6/1, 2022 at 12:43 Comment(0)
L
0

Probably main reason is a.b.c version and difference a.b version. Normally 0.5 > 0.41 but one a.b other a.b.c version code. I think 0.5.0 or 0.5.1 (a.b.c) is solution

Leticialetisha answered 10/2 at 3:17 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.