Fixed version code placement #6

This commit is contained in:
yesimxev 2023-08-16 21:42:12 +01:00
parent 4ff98d5a14
commit 3fd1a67517
2 changed files with 2 additions and 8 deletions

View File

@ -10,12 +10,6 @@ buildscript {
JUNIT_VERSION : "4.12" JUNIT_VERSION : "4.12"
] ]
ext {
//version=YYYYMMVVRR (Either "VV" for stable version OR "RR" for pre-release candidate (e.g. 0001 for rc1))
versionCode 2023030100
versionName "2023.3"
}
ext.deps = [ ext.deps = [
"annotations" : "androidx.annotation:annotation:1.0.0", "annotations" : "androidx.annotation:annotation:1.0.0",
"appcompat-v7" : "androidx.appcompat:appcompat:1.0.0", "appcompat-v7" : "androidx.appcompat:appcompat:1.0.0",

View File

@ -10,8 +10,8 @@ android {
targetSdkVersion rootProject.ext.android.TARGET_SDK_VERSION targetSdkVersion rootProject.ext.android.TARGET_SDK_VERSION
//version=YYYYMMVVRR (Either "VV" for stable version OR "RR" for pre-release candidate (e.g. 0001 for rc1)) //version=YYYYMMVVRR (Either "VV" for stable version OR "RR" for pre-release candidate (e.g. 0001 for rc1))
//noinspection HighAppVersionCode //noinspection HighAppVersionCode
versionCode rootProject.ext.versionCode versionCode 2023030100
versionName rootProject.ext.versionName versionName "2023.3"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resConfigs 'zh-rCN', 'zh-rTW' resConfigs 'zh-rCN', 'zh-rTW'
externalNativeBuild { externalNativeBuild {