Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

versionCode/versionName bug

I have this strange problem with my android studio, when I try to compile/run/build apk the androidCode and androidName always comes to version 1.0, no matter what I set it. I've been changing the main AndroidManifest.xml file, and still nothing. Does anyone else have this bug, or what have you done to fix it?

like image 422
lawonga Avatar asked Dec 24 '13 10:12

lawonga


2 Answers

It was build.gradle being the culprit, under android, you need to change the settings here:

defaultConfig {
    minSdkVersion 9
    targetSdkVersion 19
    versionCode 2 <----This
    versionName "1.1" <----This
}
like image 165
lawonga Avatar answered Oct 02 '22 18:10

lawonga


You need to change the android:versionCode and android:versionName in AndroidManifest, as shown below:

If Old is:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.hello"
    android:versionCode="1"
    android:versionName="1.0" >

Change it to:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.hello"
    android:versionCode="2"
    android:versionName="1.1" >
like image 24
Infinite Recursion Avatar answered Oct 02 '22 19:10

Infinite Recursion