fix(mobile): 升级 livekit_client 至 2.10.0 以兼容 Dart 3.13 并恢复安卓出包

Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
编码工程师
2026-08-31 08:32:22 +08:00
co-authored by Cursor multica-agent
parent 1d393f4f1e
commit b7a31de5b6
7 changed files with 71 additions and 37 deletions
-13
View File
@@ -81,16 +81,3 @@ kotlin {
flutter {
source = "../.."
}
// livekit_client 插件硬编码 compileSdk = 34,但它依赖的 flutter_webrtc 要求消费者 ≥36
// AAR 元数据校验会因此失败。:app 先于各插件求值(根脚本有 evaluationDependsOn(":app")),
// 所以在插件求值完成后把它的 compileSdk 抬到 36。
rootProject.subprojects {
if (name == "livekit_client") {
afterEvaluate {
extensions.configure<com.android.build.gradle.LibraryExtension> {
compileSdk = 36
}
}
}
}