Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
F
flutter-push
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
flutter-push
Commits
dbcd26b4
提交
dbcd26b4
authored
12月 16, 2022
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改 key 的获取方式
上级
58986cda
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
16 行增加
和
19 行删除
+16
-19
RammusPlugin.kt
android/src/main/kotlin/com/jarvanmo/rammus/RammusPlugin.kt
+16
-19
没有找到文件。
android/src/main/kotlin/com/jarvanmo/rammus/RammusPlugin.kt
浏览文件 @
dbcd26b4
...
...
@@ -89,18 +89,16 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
})
val
appInfo
=
gottenApplication
.
packageManager
.
getApplicationInfo
(
gottenApplication
.
packageName
,
PackageManager
.
GET_META_DATA
)
val
xiaomiAppId
=
appInfo
.
metaData
.
get
String
(
"com.xiaomi.push.client.app_id"
)
val
xiaomiAppKey
=
appInfo
.
metaData
.
get
String
(
"com.xiaomi.push.client.app_key"
)
val
xiaomiAppId
=
appInfo
.
metaData
.
get
Int
(
"com.xiaomi.push.client.app_id"
)
val
xiaomiAppKey
=
appInfo
.
metaData
.
get
Int
(
"com.xiaomi.push.client.app_key"
)
LogUtils
.
d
(
"小米:appId=$xiaomiAppId,appKey=$xiaomiAppKey"
)
if
((
xiaomiAppId
!=
null
&&
xiaomiAppId
.
isNotBlank
())
&&
(
xiaomiAppKey
!=
null
&&
xiaomiAppKey
.
isNotBlank
())
)
{
if
(
xiaomiAppId
!=
0
&&
xiaomiAppKey
!=
0
)
{
LogUtils
.
d
(
"正在注册小米推送服务..."
)
MiPushRegister
.
register
(
gottenApplication
,
xiaomiAppId
,
xiaomiAppKey
)
MiPushRegister
.
register
(
gottenApplication
,
xiaomiAppId
.
toString
(),
xiaomiAppKey
.
toString
()
)
}
val
huaweiAppId
=
appInfo
.
metaData
.
get
String
(
"com.huawei.hms.client.appid"
)
val
huaweiAppId
=
appInfo
.
metaData
.
get
Int
(
"com.huawei.hms.client.appid"
)
LogUtils
.
d
(
"华为:appId=$huaweiAppId"
)
if
(
huaweiAppId
!=
null
&&
huaweiAppId
.
toString
().
isNotBlank
()
)
{
if
(
huaweiAppId
!=
0
)
{
LogUtils
.
d
(
"正在注册华为推送服务..."
)
HuaWeiRegister
.
register
(
gottenApplication
as
Application
)
}
...
...
@@ -113,29 +111,28 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
LogUtils
.
d
(
"正在注册Oppo推送服务..."
)
OppoRegister
.
register
(
gottenApplication
,
oppoAppKey
,
oppoAppSecret
)
}
val
vivoAppId
=
appInfo
.
metaData
.
get
String
(
"com.vivo.push.app_id"
)
val
vivoAppId
=
appInfo
.
metaData
.
get
Int
(
"com.vivo.push.app_id"
)
val
vivoApiKey
=
appInfo
.
metaData
.
getString
(
"com.vivo.push.api_key"
)
LogUtils
.
d
(
"vivo:vivoAppId=$vivoAppId,vivoApiKey=$vivoApiKey"
)
if
((
vivoAppId
!=
null
&&
vivoAppId
.
isNotBlank
())
&&
(
vivoApiKey
!=
null
&&
vivoApiKey
.
isNotBlank
())
if
((
vivoAppId
!=
0
)
&&
(
vivoApiKey
!=
null
&&
vivoApiKey
.
isNotBlank
())
)
{
LogUtils
.
d
(
"正在注册vivo推送服务..."
)
VivoRegister
.
register
(
gottenApplication
)
}
val
hihonorId
=
appInfo
.
metaData
.
get
String
(
"com.hihonor.push.app_id"
)
val
hihonorId
=
appInfo
.
metaData
.
get
Int
(
"com.hihonor.push.app_id"
)
LogUtils
.
d
(
"荣耀:hihonorId=$hihonorId"
)
if
(
hihonorId
!=
null
&&
hihonorId
.
toString
().
isNotBlank
()
)
{
if
(
hihonorId
!=
0
)
{
LogUtils
.
d
(
"正在注册荣耀推送服务..."
)
HonorRegister
.
register
(
gottenApplication
as
Application
)
}
}
private
fun
initPushService
()
{
PushServiceFactory
.
init
(
gottenApplication
)
val
pushService
=
PushServiceFactory
.
getCloudPushService
()
pushService
.
setPushIntentService
(
RammusPushIntentService
::
class
.
java
)
LogUtils
.
d
(
"initPushService"
)
}
private
fun
initPushService
()
{
PushServiceFactory
.
init
(
gottenApplication
)
val
pushService
=
PushServiceFactory
.
getCloudPushService
()
pushService
.
setPushIntentService
(
RammusPushIntentService
::
class
.
java
)
LogUtils
.
d
(
"initPushService"
)
}
private
fun
turnOnPushChannel
(
result
:
Result
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论