Files
zd_servicing/build.gradle
songzhiling 96a61fe09f refactor(sdk): 重构项目并添加 native 代码支持
- 移除了不必要的日志库 LogUtil
- 添加了高德地图服务并配置了相关权限
- 更新了 API 接口定义,统一添加了前缀
-重构了 AppConfig 类,使用 native代码获取配置信息
- 更新了项目构建配置,支持 native 代码编译
- 优化了部分代码结构,提高了代码的可维护性
2025-07-17 11:35:38 +08:00

14 lines
717 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
//plugins {
// id(libs.plugins.android.application) apply false
// id(libs.plugins.jetbrains.kotlin.android) apply false
// id(libs.plugins.android.library) apply false
// id("com.google.devtools.ksp") version "1.9.0-1.0.13" apply false
//}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.2.2' apply false
id 'com.android.library' version '8.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.25' apply false
id 'com.google.devtools.ksp' version "1.9.0-1.0.13" apply false
}