1.移除ACCESS_MOCK_LOCATION 权限

2.MMKV启用AES-256加密保存
3.修复导出组件和 Deep Links的处理建议
4.加入混淆代码
5.删除蓝牙透传RAW TCP(socket)
This commit is contained in:
2026-07-14 11:08:43 +08:00
parent 4f77f25be4
commit a25e4a093d
22 changed files with 1000 additions and 173 deletions

View File

@@ -12,6 +12,14 @@ android {
minSdkVersion 15
targetSdkVersion 33
vectorDrawables.useSupportLibrary = true
// 库模块自身不开启混淆,输出的规则传递给依赖本库的 App
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
// 库模块自身不混淆:产出的 AAR 必须是原始类
minifyEnabled false
}
}
namespace 'com.huantansheng.easyphotos'
}