diff --git a/debugtemp/build.gradle b/debugtemp/build.gradle index 12e9985..570ffed 100644 --- a/debugtemp/build.gradle +++ b/debugtemp/build.gradle @@ -24,97 +24,36 @@ android { defaultConfig { applicationId "cc.winboll.studio.debugtemp" - minSdkVersion 23 + minSdkVersion 26 // 适配MIUI12 targetSdkVersion 30 versionCode 1 // versionName 更新后需要手动设置 // .winboll/winbollBuildProps.properties 文件的 stageCount=0 // Gradle编译环境下合起来的 versionName 就是 "${versionName}.0" - versionName "15.0" + versionName "15.20" if(true) { versionName = genVersionName("${versionName}") } } - // 米盟 SDK - packagingOptions { - doNotStrip "*/*/libmimo_1011.so" - } - - sourceSets { - main { - jniLibs.srcDirs = ['libs'] // 若SO库放在libs目录下 - } - } + // 确保 Java 7 兼容性(已适配项目技术栈) + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 + } } dependencies { api project(':libdebugtemp') - - api 'com.google.code.gson:gson:2.10.1' - - // 下拉控件 - api 'com.baoyz.pullrefreshlayout:library:1.2.0' - - // SSH - api 'com.jcraft:jsch:0.1.55' - // Html 解析 - api 'org.jsoup:jsoup:1.13.1' - // 二维码类库 - api 'com.google.zxing:core:3.4.1' - api 'com.journeyapps:zxing-android-embedded:3.6.0' - // 应用介绍页类库 - api 'io.github.medyo:android-about-page:2.0.0' - // 网络连接类库 - api 'com.squareup.okhttp3:okhttp:4.4.1' - // OkHttp网络请求 - implementation 'com.squareup.okhttp3:okhttp:3.14.9' - // FastJSON解析 - implementation 'com.alibaba:fastjson:1.2.76' - - // AndroidX 类库 - /*api 'androidx.appcompat:appcompat:1.1.0' - //api 'com.google.android.material:material:1.4.0' - //api 'androidx.viewpager:viewpager:1.0.0' - //api 'androidx.vectordrawable:vectordrawable:1.1.0' - //api 'androidx.vectordrawable:vectordrawable-animated:1.1.0' - //api 'androidx.fragment:fragment:1.1.0'*/ - - - // 米盟 - api 'com.miui.zeus:mimo-ad-sdk:5.3.+'//请使用最新版sdk - //注意:以下5个库必须要引入 - //implementation 'androidx.appcompat:appcompat:1.4.1' - api 'androidx.recyclerview:recyclerview:1.0.0' - api 'com.google.code.gson:gson:2.8.5' - api 'com.github.bumptech.glide:glide:4.9.0' - //annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0' - - implementation "androidx.annotation:annotation:1.3.0" - implementation "androidx.core:core:1.6.0" - implementation "androidx.drawerlayout:drawerlayout:1.1.1" - implementation "androidx.preference:preference:1.1.1" - implementation "androidx.viewpager:viewpager:1.0.0" - implementation "com.google.android.material:material:1.4.0" - implementation "com.google.guava:guava:24.1-jre" - /* - implementation "io.noties.markwon:core:$markwonVersion" - implementation "io.noties.markwon:ext-strikethrough:$markwonVersion" - implementation "io.noties.markwon:linkify:$markwonVersion" - implementation "io.noties.markwon:recycler:$markwonVersion" - */ - implementation 'com.termux:terminal-emulator:0.118.0' - implementation 'com.termux:terminal-view:0.118.0' - implementation 'com.termux:termux-shared:0.118.0' // WinBoLL库 nexus.winboll.cc 地址 - api 'cc.winboll.studio:libaes:15.15.2' - api 'cc.winboll.studio:libappbase:15.15.11' + api 'cc.winboll.studio:libaes:15.20.3' + api 'cc.winboll.studio:libappbase:15.20.9' // WinBoLL备用库 jitpack.io 地址 - //api 'com.github.ZhanGSKen:AES:aes-v15.15.7' - //api 'com.github.ZhanGSKen:APPBase:appbase-v15.15.4' + //api 'com.github.ZhanGSKen:AES:aes-v15.20.3' + //api 'com.github.ZhanGSKen:APPBase:appbase-v15.20.9' api fileTree(dir: 'libs', include: ['*.jar']) } diff --git a/debugtemp/build.properties b/debugtemp/build.properties index 9805e56..95ee400 100644 --- a/debugtemp/build.properties +++ b/debugtemp/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle #Fri May 01 17:09:11 HKT 2026 -stageCount=57 +stageCount=0 libraryProject=libdebugtemp -baseVersion=15.0 -publishVersion=15.0.56 +baseVersion=15.20 +publishVersion=15.20.0 buildCount=0 -baseBetaVersion=15.0.57 +baseBetaVersion=15.20.1 diff --git a/libdebugtemp/build.gradle b/libdebugtemp/build.gradle index b11c04e..0aef3b4 100644 --- a/libdebugtemp/build.gradle +++ b/libdebugtemp/build.gradle @@ -9,15 +9,14 @@ android { buildToolsVersion "30.0.3" defaultConfig { - minSdkVersion 21 + minSdkVersion 26 targetSdkVersion 30 } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 + } } dependencies {