diff --git a/powerbell/build.gradle b/powerbell/build.gradle index 83b77a0..7d9e2f9 100644 --- a/powerbell/build.gradle +++ b/powerbell/build.gradle @@ -19,12 +19,12 @@ def genVersionName(def versionName){ android { - // 1. compileSdkVersion:必须 ≥ targetSdkVersion,建议直接等于 targetSdkVersion(30) - compileSdkVersion 30 - - // 2. buildToolsVersion:需匹配 compileSdkVersion,建议使用 30.x.x 最新稳定版(无需高于 compileSdkVersion) - buildToolsVersion "30.0.3" // 这是 30 对应的最新稳定版,避免使用 beta 版 + // 关键:改为你已安装的 SDK 32(≥ targetSdkVersion 30,兼容已安装环境) + compileSdkVersion 32 + // 直接使用已安装的构建工具 33.0.3(无需修改) + buildToolsVersion "33.0.3" + defaultConfig { applicationId "cc.winboll.studio.powerbell" minSdkVersion 23 @@ -83,12 +83,12 @@ dependencies { //api 'androidx.fragment:fragment:1.1.0' // WinBoLL库 nexus.winboll.cc 地址 - //api 'cc.winboll.studio:libaes:15.12.7' - //api 'cc.winboll.studio:libappbase:15.12.2' + api 'cc.winboll.studio:libaes:15.12.11' + api 'cc.winboll.studio:libappbase:15.14.2' // WinBoLL备用库 jitpack.io 地址 - api 'com.github.ZhanGSKen:AES:aes-v15.12.9' - api 'com.github.ZhanGSKen:APPBase:appbase-v15.14.1' + //api 'com.github.ZhanGSKen:AES:aes-v15.12.9' + //api 'com.github.ZhanGSKen:APPBase:appbase-v15.14.1' //api fileTree(dir: 'libs', include: ['*.aar']) api fileTree(dir: 'libs', include: ['*.jar'])