How to change Android version and code version number?

后端 未结 10 787
悲哀的现实
悲哀的现实 2020-12-07 08:56

How to change Android version and code version number Android Studio? I want to change apk file (app) on Google Play and I need to change Android version and code version nu

相关标签:
10条回答
  • 2020-12-07 09:02

    Go in the build.gradle and set the version code and name inside the defaultConfig element

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    

    screenshot

    0 讨论(0)
  • 2020-12-07 09:03

    You can manage your application versioning wisely by using the Advanced Build Version Plugin for Gradle.

    You just need to include the plugin in yout build.gradle:

    buildscript {
      repositories {
          jcenter()
      }
    
      dependencies {
          classpath 'org.moallemi.gradle.advanced-build-version:gradle-plugin:1.5.0'
      }
    }
    
    apply plugin: 'org.moallemi.advanced-build-version'
    

    And then you can use the versioning functions (and, obviously, customize them):

    advancedVersioning {
        nameOptions { }
        codeOptions { }
        outputOptions { }
    }
    
    def appVersionName = advancedVersioning.versionName
    def appVersionCode = advancedVersioning.versionCode
    

    For more information, take a look at the official documentation.

    0 讨论(0)
  • 2020-12-07 09:04

    You can define your versionName and versionCode in your module's build.gradle file like this :

    android {
        compileSdkVersion 19
        buildToolsVersion "19.0.1"
    
        defaultConfig {
            minSdkVersion 8
            targetSdkVersion 19
            versionCode 1
            versionName "1.0"
        }
        .... //Other Configuration
    }
    
    0 讨论(0)
  • 2020-12-07 09:11

    Press Ctrl+Alt+Shift+S in android studio or go to File > Project Structure... Select app on left side and select falvors tab on right side on default config change version code , name and etc... enter image description here

    0 讨论(0)
  • 2020-12-07 09:12

    After updating the manifest file, instead of building your project, go to command line and reach the path ...bld\Debug\platforms\android. Run the command "ant release". Your new release.apk file will have a new version code.

    0 讨论(0)
  • 2020-12-07 09:13

    Go in the build.gradle and set the version code and name inside the defaultConfig element

    defaultConfig { minSdkVersion 9 targetSdkVersion 19 versionCode 1 versionName "1.0" }

    0 讨论(0)
提交回复
热议问题