
- 移除了不必要的日志库 LogUtil - 添加了高德地图服务并配置了相关权限 - 更新了 API 接口定义,统一添加了前缀 -重构了 AppConfig 类,使用 native代码获取配置信息 - 更新了项目构建配置,支持 native 代码编译 - 优化了部分代码结构,提高了代码的可维护性
14 lines
717 B
Groovy
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
|
|
} |