提交 dbcd26b4 authored 作者: 张国庆's avatar 张国庆

修改 key 的获取方式

上级 58986cda
...@@ -89,18 +89,16 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler { ...@@ -89,18 +89,16 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
}) })
val appInfo = gottenApplication.packageManager val appInfo = gottenApplication.packageManager
.getApplicationInfo(gottenApplication.packageName, PackageManager.GET_META_DATA) .getApplicationInfo(gottenApplication.packageName, PackageManager.GET_META_DATA)
val xiaomiAppId = appInfo.metaData.getString("com.xiaomi.push.client.app_id") val xiaomiAppId = appInfo.metaData.getInt("com.xiaomi.push.client.app_id")
val xiaomiAppKey = appInfo.metaData.getString("com.xiaomi.push.client.app_key") val xiaomiAppKey = appInfo.metaData.getInt("com.xiaomi.push.client.app_key")
LogUtils.d("小米:appId=$xiaomiAppId,appKey=$xiaomiAppKey") LogUtils.d("小米:appId=$xiaomiAppId,appKey=$xiaomiAppKey")
if ((xiaomiAppId != null && xiaomiAppId.isNotBlank()) if (xiaomiAppId != 0 && xiaomiAppKey != 0) {
&& (xiaomiAppKey != null && xiaomiAppKey.isNotBlank())
) {
LogUtils.d("正在注册小米推送服务...") LogUtils.d("正在注册小米推送服务...")
MiPushRegister.register(gottenApplication, xiaomiAppId, xiaomiAppKey) MiPushRegister.register(gottenApplication, xiaomiAppId.toString(), xiaomiAppKey.toString())
} }
val huaweiAppId = appInfo.metaData.getString("com.huawei.hms.client.appid") val huaweiAppId = appInfo.metaData.getInt("com.huawei.hms.client.appid")
LogUtils.d("华为:appId=$huaweiAppId") LogUtils.d("华为:appId=$huaweiAppId")
if (huaweiAppId != null && huaweiAppId.toString().isNotBlank()) { if (huaweiAppId != 0) {
LogUtils.d("正在注册华为推送服务...") LogUtils.d("正在注册华为推送服务...")
HuaWeiRegister.register(gottenApplication as Application) HuaWeiRegister.register(gottenApplication as Application)
} }
...@@ -113,29 +111,28 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler { ...@@ -113,29 +111,28 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
LogUtils.d("正在注册Oppo推送服务...") LogUtils.d("正在注册Oppo推送服务...")
OppoRegister.register(gottenApplication, oppoAppKey, oppoAppSecret) OppoRegister.register(gottenApplication, oppoAppKey, oppoAppSecret)
} }
val vivoAppId = appInfo.metaData.getString("com.vivo.push.app_id") val vivoAppId = appInfo.metaData.getInt("com.vivo.push.app_id")
val vivoApiKey = appInfo.metaData.getString("com.vivo.push.api_key") val vivoApiKey = appInfo.metaData.getString("com.vivo.push.api_key")
LogUtils.d("vivo:vivoAppId=$vivoAppId,vivoApiKey=$vivoApiKey") LogUtils.d("vivo:vivoAppId=$vivoAppId,vivoApiKey=$vivoApiKey")
if ((vivoAppId != null && vivoAppId.isNotBlank()) if ((vivoAppId != 0) && (vivoApiKey != null && vivoApiKey.isNotBlank())
&& (vivoApiKey != null && vivoApiKey.isNotBlank())
) { ) {
LogUtils.d("正在注册vivo推送服务...") LogUtils.d("正在注册vivo推送服务...")
VivoRegister.register(gottenApplication) VivoRegister.register(gottenApplication)
} }
val hihonorId = appInfo.metaData.getString("com.hihonor.push.app_id") val hihonorId = appInfo.metaData.getInt("com.hihonor.push.app_id")
LogUtils.d("荣耀:hihonorId=$hihonorId") LogUtils.d("荣耀:hihonorId=$hihonorId")
if (hihonorId != null && hihonorId.toString().isNotBlank()) { if (hihonorId != 0) {
LogUtils.d("正在注册荣耀推送服务...") LogUtils.d("正在注册荣耀推送服务...")
HonorRegister.register(gottenApplication as Application) HonorRegister.register(gottenApplication as Application)
} }
} }
private fun initPushService(){ private fun initPushService() {
PushServiceFactory.init(gottenApplication) PushServiceFactory.init(gottenApplication)
val pushService = PushServiceFactory.getCloudPushService() val pushService = PushServiceFactory.getCloudPushService()
pushService.setPushIntentService(RammusPushIntentService::class.java) pushService.setPushIntentService(RammusPushIntentService::class.java)
LogUtils.d("initPushService") LogUtils.d("initPushService")
} }
private fun turnOnPushChannel(result: Result) { private fun turnOnPushChannel(result: Result) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论