Fixed version code placement #3

This commit is contained in:
yesimxev 2023-08-16 15:46:27 +01:00
parent 9629975c3c
commit 6cdc33aa3d
3 changed files with 9 additions and 4 deletions

View File

@ -10,6 +10,11 @@ buildscript {
JUNIT_VERSION : "4.12" JUNIT_VERSION : "4.12"
] ]
ext {
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 2023030100 versionCode rootProject.ext.versionCode
versionName "2023.3" versionName rootProject.ext.versionName
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resConfigs 'zh-rCN', 'zh-rTW' resConfigs 'zh-rCN', 'zh-rTW'
externalNativeBuild { externalNativeBuild {

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:sharedUserId="com.offsec.nhterm"> android:sharedUserId="com.offsec.nhterm"
package="com.offsec.nhterm">
<uses-feature <uses-feature
android:name="android.hardware.touchscreen" android:name="android.hardware.touchscreen"
android:required="false"/> android:required="false"/>