From 5dff718830178e04f53464168cc16324a043ea1a Mon Sep 17 00:00:00 2001 From: Daisy <> Date: Tue, 28 May 2024 10:42:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8E=E4=B8=BA=E5=8E=82=E5=95=86=E6=8E=A8?= =?UTF-8?q?=E9=80=81SDK=E7=89=88=E6=9C=AC=E5=8F=B7=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index a4a53e8f..1f575af4 100755 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -52,10 +52,14 @@ android { // 这里“debug”不是一个自定义变量,而是一个特定的关键词,凡是使用--debug模式,都会引用到这里 // 目前看来,debug模式没办法在buildTypes里面按flavors指定编译签名,所有口味的debug模式只能用同一个签名 debug { - storeFile file("starlock.keystore") - storePassword '123456' - keyAlias = 'starlock' - keyPassword '123456' + // storeFile file("starlock.keystore") + // storePassword '123456' + // keyAlias = 'starlock' + // keyPassword '123456' + storeFile file("xhj.jks") + storePassword 'xhj8872' + keyAlias = 'upload' + keyPassword 'xhj8872' } sky { // CN=Unknown, OU=Unknown, O=Unknown, L=Unknown, ST=Unknown, C=Unknown @@ -218,10 +222,11 @@ dependencies { implementation('com.amap.api:location:5.6.0') implementation('com.amap.api:3dmap:8.1.0') - implementation 'cn.jiguang.sdk:jpush:5.2.3' + implementation 'cn.jiguang.sdk:jpush:5.2.4' // 接入华为厂商 - implementation 'com.huawei.hms:push:6.11.0.300' - implementation 'cn.jiguang.sdk.plugin:huawei:5.2.3' + implementation 'com.huawei.agconnect:agconnect-core:1.8.1.300' + implementation 'com.huawei.hms:push:6.12.0.300' + implementation 'cn.jiguang.sdk.plugin:huawei:5.2.4' - implementation 'cn.jiguang.sdk.plugin:xiaomi:5.2.3' + implementation 'cn.jiguang.sdk.plugin:xiaomi:5.2.4' }