From af8d2b9d52913ccaaa3f40b91d35f9e462efb863 Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Sun, 7 Dec 2025 20:04:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=81=A2=E5=A4=8D=E4=B8=8A=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E5=8F=AF=E7=BC=96=E8=AF=91=E7=89=88=E6=9C=AC=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- androidxdemo/src/stage/AndroidManifest.xml | 12 --- jcndk/META-INF/MANIFEST.MF | 25 ----- positions/build.gradle | 36 +++---- positions/build.properties | 12 +-- positions/src/main/AndroidManifest.xml | 120 ++++++++++++++++++--- 5 files changed, 132 insertions(+), 73 deletions(-) diff --git a/androidxdemo/src/stage/AndroidManifest.xml b/androidxdemo/src/stage/AndroidManifest.xml index ee78d9f..e69de29 100644 --- a/androidxdemo/src/stage/AndroidManifest.xml +++ b/androidxdemo/src/stage/AndroidManifest.xml @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/jcndk/META-INF/MANIFEST.MF b/jcndk/META-INF/MANIFEST.MF index 4385ffd..e69de29 100644 --- a/jcndk/META-INF/MANIFEST.MF +++ b/jcndk/META-INF/MANIFEST.MF @@ -1,25 +0,0 @@ -Manifest-Version: 1.0 -Built-By: Generated-by-ADT -Created-By: Android Gradle 3.5.0 - -Name: AndroidManifest.xml -SHA1-Digest: U36A0NWthb49+Rxs33tkIuNYFCI= - -Name: jni/Android.mk -SHA1-Digest: ZpGSlRJPL0g9OejiWbQorqj40/Y= - -Name: jni/Application.mk -SHA1-Digest: TKh2CbRLeKfvgL4cPfmoxcVz+vc= - -Name: jni/hello-jni.cpp -SHA1-Digest: 1btXO19SqB6rDvPo5ynG0brDqTk= - -Name: project.properties -SHA1-Digest: 0ekOiGTFMVJOWqAFzNFj/1vxPL8= - -Name: res/values/strings.xml -SHA1-Digest: FgRO/zbNaC1wuZKVT7h6NSYBmpY= - -Name: src/$package_name$/HelloJni.java -SHA1-Digest: p0e9DNKocjRnsOhetb9bnp9s9J4= - diff --git a/positions/build.gradle b/positions/build.gradle index 5b4ea14..e4f159b 100644 --- a/positions/build.gradle +++ b/positions/build.gradle @@ -18,34 +18,29 @@ def genVersionName(def versionName){ } android { - compileSdkVersion 32 - buildToolsVersion "32.0.0" + // 1. compileSdkVersion:必须 ≥ targetSdkVersion,建议直接等于 targetSdkVersion(30) + compileSdkVersion 30 + // 2. buildToolsVersion:需匹配 compileSdkVersion,建议使用 30.x.x 最新稳定版(无需高于 compileSdkVersion) + buildToolsVersion "30.0.3" // 这是 30 对应的最新稳定版,避免使用 beta 版 + defaultConfig { applicationId "cc.winboll.studio.positions" - minSdkVersion 24 + minSdkVersion 23 targetSdkVersion 30 versionCode 1 // versionName 更新后需要手动设置 // .winboll/winbollBuildProps.properties 文件的 stageCount=0 // Gradle编译环境下合起来的 versionName 就是 "${versionName}.0" - versionName "15.0" + versionName "15.12" if(true) { versionName = genVersionName("${versionName}") } } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } + } dependencies { - api fileTree(dir: 'libs', include: ['*.jar']) - // https://mvnrepository.com/artifact/com.jzxiang.pickerview/TimePickerDialog api 'com.jzxiang.pickerview:TimePickerDialog:1.0.1' @@ -61,8 +56,6 @@ dependencies { api 'com.journeyapps:zxing-android-embedded:3.6.0' // 应用介绍页类库 api 'io.github.medyo:android-about-page:2.0.0' - // 吐司类库 - //api 'com.github.getActivity:ToastUtils:10.5' // 网络连接类库 api 'com.squareup.okhttp3:okhttp:4.4.1' // AndroidX 类库 @@ -73,7 +66,14 @@ dependencies { //api 'androidx.vectordrawable:vectordrawable-animated:1.1.0' //api 'androidx.fragment:fragment:1.1.0' - api 'cc.winboll.studio:libaes:15.10.2' - api 'cc.winboll.studio:libapputils:15.10.2' - api 'cc.winboll.studio:libappbase:15.10.9' + + // WinBoLL库 nexus.winboll.cc 地址 + //api 'cc.winboll.studio:libaes:15.12.0' + //api 'cc.winboll.studio:libappbase:15.12.2' + + // WinBoLL备用库 jitpack.io 地址 + api 'com.github.ZhanGSKen:AES:aes-v15.12.3' + api 'com.github.ZhanGSKen:APPBase:appbase-v15.12.2' + + api fileTree(dir: 'libs', include: ['*.jar']) } diff --git a/positions/build.properties b/positions/build.properties index 0c9f1cc..33ec84f 100644 --- a/positions/build.properties +++ b/positions/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Tue Oct 28 14:17:09 HKT 2025 -stageCount=17 +#Sun Dec 07 11:41:29 GMT 2025 +stageCount=0 libraryProject= -baseVersion=15.0 -publishVersion=15.0.16 -buildCount=0 -baseBetaVersion=15.0.17 +baseVersion=15.12 +publishVersion=15.12.0 +buildCount=3 +baseBetaVersion=15.12.1 diff --git a/positions/src/main/AndroidManifest.xml b/positions/src/main/AndroidManifest.xml index d302210..d22e9d1 100644 --- a/positions/src/main/AndroidManifest.xml +++ b/positions/src/main/AndroidManifest.xml @@ -3,20 +3,32 @@ xmlns:android="http://schemas.android.com/apk/res/android" package="cc.winboll.studio.positions"> - - - + + + + + + + + + - - + + + + + + + + + android:label="@string/app_name" + android:exported="true"> + + + + + + + + + + + + + + + + + + + + + + @@ -42,25 +83,80 @@ - + + + + + + + + + + + + + + + + + - - - + - + + + + + + + + + + + + + + + + + + + + + -