1. 程式人生 > >Android app版本號的修改

Android app版本號的修改

再app的build.gradle中

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.3"
    defaultConfig {
        applicationId "com.orbbec.obcolor"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 2
        versionName "2.0.1"  ---》在這裡修改對應的版本號即可。
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }