Changing version code in AndroidManifest not Working
android, android-studio
Solution
The version code and name get overridden by values in your `build.gradle` file. So edit your `build.gradle` and rebuild.
Problem
I tried to update my app in the playstore, to do that I changed my versioncode from 1 to 2: ``` <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.xamaxon.congstardatenverbrauch" android:versionCode="2" android:versionName="1.0.1"> ``` When I'm uploading the app the developerconsole is saying, that I still use the version code 1 and there is no human support for German developer, so I hope someone is able to help me.