refactor(build): 排除 lib_face 中的 android-serialport 依赖

- 在 lib_face 模块中排除 com.licheedev:android-serialport 依赖
- 防止依赖冲突和重复打包问题
This commit is contained in:
mazengfei
2026-03-30 15:04:41 +08:00
parent 536b1b98b4
commit 83f9654987
+3 -1
View File
@@ -59,7 +59,9 @@ dependencies {
implementation(libs.material)
implementation(libs.androidx.activity)
implementation(libs.androidx.constraintlayout)
implementation(project(":lib_face"))
implementation(project(":lib_face")) {
exclude(group = "com.licheedev", module = "android-serialport")
}
implementation(files("libs/plc_aar_104.aar"))
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)