This commit is contained in:
jia
2024-10-08 21:08:08 +08:00
parent 2e95963f3b
commit afc73de7c4
+9 -1
View File
@@ -44,6 +44,13 @@ android {
ndk { ndk {
abiFilters 'armeabi', 'arm64-v8a' abiFilters 'armeabi', 'arm64-v8a'
} }
manifestPlaceholders = [
//从 3.1.2.0 版本开始,APPID 占位符从 GETUI_APP_ID 切换为 GETUI_APPID
//后续所有产品的 APPID 均统一配置为 GETUI_APPID 占位符
GETUI_APPID : "C2ZpsHzexi5UKuUKyW0Ig",
]
} }
allprojects { allprojects {
sourceCompatibility = 1.8 sourceCompatibility = 1.8
@@ -172,5 +179,6 @@ dependencies {
implementation 'com.github.Jasonchenlijian:FastBle:2.4.0' implementation 'com.github.Jasonchenlijian:FastBle:2.4.0'
// //
// annotationProcessor 'com.github.bumptech.glide:compiler:3.7.0' // annotationProcessor 'com.github.bumptech.glide:compiler:3.7.0'
implementation 'com.getui:gtsdk:3.3.7.0' //个推SDK
implementation 'com.getui:gtc:3.2.16.0' //个推核心组件
} }