Fixed version code placement #2

This commit is contained in:
yesimxev 2023-08-15 19:24:54 +01:00
parent 2e8ab256c2
commit 9629975c3c
2 changed files with 4 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

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