1

I am trying to upload my APK to Google Play Console. The translation of the red text roughly says that version 1 is used already. This is from AndroidManifest.xml:

android:versionCode="10"
android:versionName="1.010">

Screenshot of Google Play Console

Anyone?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Nesrene
  • 107
  • 7

1 Answers1

0

Under app in the top root directory for your apps tree in Android Studio, edit bulid.gradle. For some reason AndroidManifest.xml is ignored when it coems to versioning.

Nesrene
  • 107
  • 7
  • For sure, the `gradle` setting will overwrite the `xml` value. However, a common mistake is to edit a cached version of the manifest. See [this answer](https://stackoverflow.com/a/57610125/419761). – l33t Jun 29 '21 at 08:47