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"
]
ext {
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 2023030100
versionName "2023.3"
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resConfigs 'zh-rCN', 'zh-rTW'
externalNativeBuild {

View File

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