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"
]
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 = [
"annotations" : "androidx.annotation:annotation: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
//version=YYYYMMVVRR (Either "VV" for stable version OR "RR" for pre-release candidate (e.g. 0001 for rc1))
//noinspection HighAppVersionCode
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
versionCode 2023030100
versionName "2023.3"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resConfigs 'zh-rCN', 'zh-rTW'
externalNativeBuild {