refactor(sdk): 重构项目并添加 native 代码支持
- 移除了不必要的日志库 LogUtil - 添加了高德地图服务并配置了相关权限 - 更新了 API 接口定义,统一添加了前缀 -重构了 AppConfig 类,使用 native代码获取配置信息 - 更新了项目构建配置,支持 native 代码编译 - 优化了部分代码结构,提高了代码的可维护性
This commit is contained in:
15
build.gradle
15
build.gradle
@ -1,7 +1,14 @@
|
||||
// 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 {
|
||||
alias(libs.plugins.android.application) apply false
|
||||
alias(libs.plugins.jetbrains.kotlin.android) apply false
|
||||
alias(libs.plugins.android.library) apply false
|
||||
id("com.google.devtools.ksp") version "1.9.0-1.0.13" apply false
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user