Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
F
flutter-push
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
flutter-push
Commits
fb0adbfc
提交
fb0adbfc
authored
12月 16, 2022
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改 分离注册通道
上级
8cc79dfa
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
78 行增加
和
35 行删除
+78
-35
RammusPlugin.kt
android/src/main/kotlin/com/jarvanmo/rammus/RammusPlugin.kt
+75
-35
MyApplication.kt
.../main/kotlin/com/jarvanmo/rammus_example/MyApplication.kt
+3
-0
没有找到文件。
android/src/main/kotlin/com/jarvanmo/rammus/RammusPlugin.kt
浏览文件 @
fb0adbfc
...
...
@@ -29,6 +29,12 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
private
val
inHandler
=
Handler
(
Looper
.
getMainLooper
())
lateinit
var
gottenApplication
:
Context
@JvmStatic
fun
initPushService
(
application
:
Application
){
PushServiceFactory
.
init
(
application
.
applicationContext
)
val
pushService
=
PushServiceFactory
.
getCloudPushService
()
pushService
.
setPushIntentService
(
RammusPushIntentService
::
class
.
java
)
}
}
...
...
@@ -37,8 +43,29 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
override
fun
onMethodCall
(
call
:
MethodCall
,
result
:
Result
)
{
LogUtils
.
d
(
call
.
method
)
when
(
call
.
method
)
{
"register"
->
register
()
"initPushService"
->
initPushService
()
"register"
->
register
()
"registerXiaomi"
->
{
val
appId
=
call
.
argument
<
String
>(
"appId"
)
val
appKey
=
call
.
argument
<
String
>(
"appKey"
)
registerXiaomi
(
appId
,
appKey
,
result
)
}
"registerHuaWei"
->
{
registerHuaWei
(
result
)
}
"registerOppo"
->
{
val
appId
=
call
.
argument
<
String
>(
"appId"
)
val
appKey
=
call
.
argument
<
String
>(
"appKey"
)
registerOppo
(
appId
,
appKey
,
result
)
}
"registerVivo"
->
{
val
appId
=
call
.
argument
<
String
>(
"appId"
)
val
appKey
=
call
.
argument
<
String
>(
"appKey"
)
registerVivo
(
appId
,
appKey
,
result
)
}
"registerHonor"
->
{
registerHonor
(
result
)
}
"deviceId"
->
result
.
success
(
PushServiceFactory
.
getCloudPushService
().
deviceId
)
"turnOnPushChannel"
->
turnOnPushChannel
(
result
)
"turnOffPushChannel"
->
turnOffPushChannel
(
result
)
...
...
@@ -61,10 +88,10 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
}
private
fun
register
()
{
val
pushService
=
PushServiceFactory
.
getCloudPushService
()
pushService
.
register
(
gottenApplication
,
object
:
CommonCallback
{
override
fun
onSuccess
(
response
:
String
?)
{
LogUtils
.
d
(
"initCloudChannelResult${response}"
)
inHandler
.
postDelayed
({
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"initCloudChannelResult"
,
mapOf
(
...
...
@@ -76,6 +103,7 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
}
override
fun
onFailed
(
errorCode
:
String
?,
errorMessage
:
String
?)
{
LogUtils
.
d
(
"initCloudChannelResult${errorMessage}"
)
inHandler
.
postDelayed
({
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"initCloudChannelResult"
,
mapOf
(
...
...
@@ -87,51 +115,63 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
},
2000
)
}
})
val
appInfo
=
gottenApplication
.
packageManager
.
getApplicationInfo
(
gottenApplication
.
packageName
,
PackageManager
.
GET_META_DATA
)
val
xiaomiAppId
=
appInfo
.
metaData
.
getFloat
(
"com.xiaomi.push.client.app_id"
)
val
xiaomiAppKey
=
appInfo
.
metaData
.
getInt
(
"com.xiaomi.push.client.app_key"
)
LogUtils
.
d
(
"小米:appId=$xiaomiAppId,appKey=$xiaomiAppKey"
)
if
(
xiaomiAppKey
!=
0
)
{
}
// 注册小米推送服务
private
fun
registerXiaomi
(
xiaomiAppId
:
String
?,
xiaomiAppKey
:
String
?,
result
:
Result
)
{
if
(
xiaomiAppId
!=
null
&&
xiaomiAppKey
!=
null
)
{
LogUtils
.
d
(
"正在注册小米推送服务..."
)
MiPushRegister
.
register
(
gottenApplication
,
xiaomiAppId
.
toString
(),
xiaomiAppKey
.
toString
())
}
val
huaweiAppId
=
appInfo
.
metaData
.
getInt
(
"com.huawei.hms.client.appid"
)
LogUtils
.
d
(
"华为:appId=$huaweiAppId"
)
if
(
huaweiAppId
!=
0
)
{
LogUtils
.
d
(
"正在注册华为推送服务..."
)
HuaWeiRegister
.
register
(
gottenApplication
as
Application
)
val
res
=
MiPushRegister
.
register
(
gottenApplication
,
xiaomiAppId
,
xiaomiAppKey
)
LogUtils
.
d
(
"小米推送服务注册结果:$res"
)
result
.
success
(
res
)
}
val
oppoAppKey
=
appInfo
.
metaData
.
getString
(
"com.oppo.push.client.app_key"
)
val
oppoAppSecret
=
appInfo
.
metaData
.
getString
(
"com.oppo.push.client.app_secret"
)
LogUtils
.
d
(
"oppo:oppoAppKey=$oppoAppKey,oppoAppSecret=$oppoAppSecret"
)
if
((
oppoAppKey
!=
null
&&
oppoAppKey
.
isNotBlank
())
&&
(
oppoAppSecret
!=
null
&&
oppoAppSecret
.
isNotBlank
())
)
{
}
//注册华为推送服务
private
fun
registerHuaWei
(
result
:
Result
)
{
LogUtils
.
d
(
"正在注册华为推送服务..."
)
val
res
=
HuaWeiRegister
.
register
(
gottenApplication
as
Application
)
LogUtils
.
d
(
"华为推送服务注册结果:$res"
)
result
.
success
(
res
)
}
//注册oppo推送服务
private
fun
registerOppo
(
oppoAppKey
:
String
?,
oppoAppSecret
:
String
?,
result
:
Result
)
{
if
(
oppoAppKey
!=
null
&&
oppoAppSecret
!=
null
)
{
LogUtils
.
d
(
"正在注册Oppo推送服务..."
)
OppoRegister
.
register
(
gottenApplication
,
oppoAppKey
,
oppoAppSecret
)
val
res
=
OppoRegister
.
register
(
gottenApplication
,
oppoAppKey
,
oppoAppSecret
)
LogUtils
.
d
(
"Oppo推送服务注册结果:$res"
)
result
.
success
(
res
)
}
val
vivoAppId
=
appInfo
.
metaData
.
getInt
(
"com.vivo.push.app_id"
)
val
vivoApiKey
=
appInfo
.
metaData
.
getString
(
"com.vivo.push.api_key"
)
LogUtils
.
d
(
"vivo:vivoAppId=$vivoAppId,vivoApiKey=$vivoApiKey"
)
if
((
vivoAppId
!=
0
)
&&
(
vivoApiKey
!=
null
&&
vivoApiKey
.
isNotBlank
())
)
{
}
//注册vivo推送服务
private
fun
registerVivo
(
vivoAppId
:
String
?,
vivoApiKey
:
String
?,
result
:
Result
)
{
if
(
vivoAppId
!=
null
&&
vivoApiKey
!=
null
)
{
LogUtils
.
d
(
"正在注册vivo推送服务..."
)
VivoRegister
.
register
(
gottenApplication
)
}
val
hihonorId
=
appInfo
.
metaData
.
getInt
(
"com.hihonor.push.app_id"
)
LogUtils
.
d
(
"荣耀:hihonorId=$hihonorId"
)
if
(
hihonorId
!=
0
)
{
LogUtils
.
d
(
"正在注册荣耀推送服务..."
)
HonorRegister
.
register
(
gottenApplication
as
Application
)
val
res
=
VivoRegister
.
register
(
gottenApplication
)
LogUtils
.
d
(
"vivo推送服务注册结果:$res"
)
result
.
success
(
res
)
}
}
//注册荣耀推送服务
private
fun
registerHonor
(
result
:
Result
)
{
LogUtils
.
d
(
"正在注册荣耀推送服务..."
)
val
res
=
HonorRegister
.
register
(
gottenApplication
as
Application
)
LogUtils
.
d
(
"荣耀推送服务注册结果:$res"
)
result
.
success
(
res
)
}
private
fun
initPushService
()
{
LogUtils
.
d
(
"initPushService"
)
PushServiceFactory
.
init
(
gottenApplication
)
val
pushService
=
PushServiceFactory
.
getCloudPushService
()
pushService
.
setPushIntentService
(
RammusPushIntentService
::
class
.
java
)
LogUtils
.
d
(
"initPushService"
)
}
...
...
example/android/app/src/main/kotlin/com/jarvanmo/rammus_example/MyApplication.kt
浏览文件 @
fb0adbfc
package
com.jarvanmo.rammus_example
import
com.jarvanmo.rammus.RammusPlugin
import
io.flutter.app.FlutterApplication
/***
* Created by mo on 2019-06-25
...
...
@@ -9,5 +10,6 @@ import io.flutter.app.FlutterApplication
class
MyApplication
:
FlutterApplication
()
{
override
fun
onCreate
()
{
super
.
onCreate
()
RammusPlugin
.
initPushService
(
this
)
}
}
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论