修复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

@@ -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'
}