refactor(sdk): 重构项目并添加 native 代码支持

- 移除了不必要的日志库 LogUtil
- 添加了高德地图服务并配置了相关权限
- 更新了 API 接口定义,统一添加了前缀
-重构了 AppConfig 类,使用 native代码获取配置信息
- 更新了项目构建配置,支持 native 代码编译
- 优化了部分代码结构,提高了代码的可维护性
This commit is contained in:
songzhiling
2025-07-17 11:35:38 +08:00
parent c1c070dfac
commit 96a61fe09f
126 changed files with 1480 additions and 1299 deletions

View File

@ -48,6 +48,7 @@ activity = "1.10.0"
xz = "1.9"
exifinterface = "1.3.7"
uiToolingVersion = "1.4.0"
roomCompiler = "2.7.2"
[libraries]
accompanist-pager = { module = "com.google.accompanist:accompanist-pager", version.ref = "accompanistPager" }
accompanist-pager-indicators = { module = "com.google.accompanist:accompanist-pager-indicators", version.ref = "accompanistPager" }
@ -106,6 +107,7 @@ androidx-activity = { group = "androidx.activity", name = "activity", version.re
xz = { module = "org.tukaani:xz", version.ref = "xz" }
androidx-exifinterface = { group = "androidx.exifinterface", name = "exifinterface", version.ref = "exifinterface" }
ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version.ref = "uiToolingVersion" }
androidx-room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "roomCompiler" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }