修复libappbase缺少外部依赖导致的编译失败
添加 JSch、Gson、OkHttp 三个依赖到 libappbase/build.gradle, 解决 FTPUtils、APPUtils 中 44 个找不到符号的编译错误。
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#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
|
stageCount=10
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.20
|
baseVersion=15.20
|
||||||
publishVersion=15.20.9
|
publishVersion=15.20.9
|
||||||
buildCount=0
|
buildCount=1
|
||||||
baseBetaVersion=15.20.10
|
baseBetaVersion=15.20.10
|
||||||
|
|||||||
@@ -26,4 +26,11 @@ android {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api fileTree(dir: 'libs', include: ['*.jar'])
|
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'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#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
|
stageCount=10
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.20
|
baseVersion=15.20
|
||||||
publishVersion=15.20.9
|
publishVersion=15.20.9
|
||||||
buildCount=0
|
buildCount=1
|
||||||
baseBetaVersion=15.20.10
|
baseBetaVersion=15.20.10
|
||||||
|
|||||||
Reference in New Issue
Block a user