修复libappbase缺少外部依赖导致的编译失败

添加 JSch、Gson、OkHttp 三个依赖到 libappbase/build.gradle,
解决 FTPUtils、APPUtils 中 44 个找不到符号的编译错误。
This commit is contained in:
LaizyBoy
2026-05-16 02:20:11 +08:00
parent a56d068092
commit d3bc40fb12
3 changed files with 11 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Fri May 15 17:54:26 GMT 2026
#Sat May 16 02:12:52 CST 2026
stageCount=10
libraryProject=libappbase
baseVersion=15.20
publishVersion=15.20.9
buildCount=0
buildCount=1
baseBetaVersion=15.20.10

View File

@@ -26,4 +26,11 @@ android {
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
// JSch for SFTP
api 'com.jcraft:jsch:0.1.55'
// Gson for JSON
api 'com.google.code.gson:gson:2.8.9'
// OkHttp for HTTP
api 'com.squareup.okhttp3:okhttp:3.12.13'
}

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Tue May 12 09:16:45 HKT 2026
#Sat May 16 02:12:52 CST 2026
stageCount=10
libraryProject=libappbase
baseVersion=15.20
publishVersion=15.20.9
buildCount=0
buildCount=1
baseBetaVersion=15.20.10