How to change Android version and code version number?

后端 未结 10 814
悲哀的现实
悲哀的现实 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: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" }

提交回复
热议问题