Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
F
flutter-push
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
flutter-push
Commits
d1726609
提交
d1726609
authored
12月 16, 2022
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改推送 插件
上级
66dfeb53
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
36 行增加
和
26 行删除
+36
-26
build.gradle
android/build.gradle
+1
-0
PopupPushActivity.kt
.../src/main/kotlin/com/jarvanmo/rammus/PopupPushActivity.kt
+5
-3
RammusPlugin.kt
android/src/main/kotlin/com/jarvanmo/rammus/RammusPlugin.kt
+0
-0
RammusPushIntentService.kt
...ain/kotlin/com/jarvanmo/rammus/RammusPushIntentService.kt
+9
-7
build.gradle
example/android/app/build.gradle
+1
-0
AndroidManifest.xml
example/android/app/src/main/AndroidManifest.xml
+1
-9
MyApplication.kt
.../main/kotlin/com/jarvanmo/rammus_example/MyApplication.kt
+0
-3
main.dart
example/lib/main.dart
+18
-3
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
android/build.gradle
浏览文件 @
d1726609
...
@@ -61,4 +61,5 @@ dependencies {
...
@@ -61,4 +61,5 @@ dependencies {
implementation
"com.aliyun.ams:alicloud-android-third-push-oppo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-oppo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-vivo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-vivo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-honor:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-honor:$push_version"
implementation
"com.blankj:utilcodex:1.31.1"
}
}
android/src/main/kotlin/com/jarvanmo/rammus/PopupPushActivity.kt
浏览文件 @
d1726609
...
@@ -2,22 +2,24 @@ package com.jarvanmo.rammus
...
@@ -2,22 +2,24 @@ package com.jarvanmo.rammus
import
android.os.Bundle
import
android.os.Bundle
import
android.os.Handler
import
android.os.Handler
import
android.os.Looper
import
android.os.PersistableBundle
import
android.os.PersistableBundle
import
android.util.Log
import
android.util.Log
import
com.alibaba.sdk.android.push.AndroidPopupActivity
import
com.alibaba.sdk.android.push.AndroidPopupActivity
import
com.blankj.utilcode.util.LogUtils
import
org.json.JSONObject
import
org.json.JSONObject
class
PopupPushActivity
:
AndroidPopupActivity
()
{
class
PopupPushActivity
:
AndroidPopupActivity
()
{
private
val
handler
=
Handler
()
private
val
handler
=
Handler
(
Looper
.
getMainLooper
()
)
override
fun
onSysNoticeOpened
(
title
:
String
,
summary
:
String
,
extras
:
MutableMap
<
String
,
String
>)
{
override
fun
onSysNoticeOpened
(
title
:
String
,
summary
:
String
,
extras
:
MutableMap
<
String
,
String
>)
{
Log
.
d
(
"PopupPushActivity"
,
"onSysNoticeOpened, title: $title, content: $summary, extMap
: $extras"
)
Log
Utils
.
d
(
"onSysNoticeOpened title is $title, summary is $summary, extras
: $extras"
)
startActivity
(
packageManager
.
getLaunchIntentForPackage
(
packageName
))
startActivity
(
packageManager
.
getLaunchIntentForPackage
(
packageName
))
var
jsonExtras
=
JSONObject
()
var
jsonExtras
=
JSONObject
()
for
(
key
in
extras
.
keys
){
for
(
key
in
extras
.
keys
){
jsonExtras
.
putOpt
(
key
,
extras
[
key
])
jsonExtras
.
putOpt
(
key
,
extras
[
key
])
}
}
Log
.
d
(
"PopupPushActivity"
,
"onSysNoticeOpened extras: ${jsonExtras.toString()}"
)
Log
Utils
.
d
(
"onSysNoticeOpened extras: ${jsonExtras.toString()}"
)
handler
.
postDelayed
({
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationOpened"
,
mapOf
(
handler
.
postDelayed
({
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationOpened"
,
mapOf
(
"title"
to
title
,
"title"
to
title
,
"summary"
to
summary
,
"summary"
to
summary
,
...
...
android/src/main/kotlin/com/jarvanmo/rammus/RammusPlugin.kt
浏览文件 @
d1726609
差异被折叠。
点击展开。
android/src/main/kotlin/com/jarvanmo/rammus/RammusPushIntentService.kt
浏览文件 @
d1726609
...
@@ -2,9 +2,11 @@ package com.jarvanmo.rammus
...
@@ -2,9 +2,11 @@ package com.jarvanmo.rammus
import
android.content.Context
import
android.content.Context
import
android.os.Handler
import
android.os.Handler
import
android.os.Looper
import
android.util.Log
import
android.util.Log
import
com.alibaba.sdk.android.push.AliyunMessageIntentService
import
com.alibaba.sdk.android.push.AliyunMessageIntentService
import
com.alibaba.sdk.android.push.notification.CPushMessage
import
com.alibaba.sdk.android.push.notification.CPushMessage
import
com.blankj.utilcode.util.LogUtils
/***
/***
* Created by mo on 2019-06-25
* Created by mo on 2019-06-25
...
@@ -13,10 +15,10 @@ import com.alibaba.sdk.android.push.notification.CPushMessage
...
@@ -13,10 +15,10 @@ import com.alibaba.sdk.android.push.notification.CPushMessage
**/
**/
class
RammusPushIntentService
:
AliyunMessageIntentService
()
{
class
RammusPushIntentService
:
AliyunMessageIntentService
()
{
private
val
handler
=
Handler
()
private
val
handler
=
Handler
(
Looper
.
getMainLooper
()
)
override
fun
onNotificationRemoved
(
context
:
Context
,
messageId
:
String
?)
{
override
fun
onNotificationRemoved
(
context
:
Context
,
messageId
:
String
?)
{
Log
.
d
(
"RammusPushIntentService"
,
"onNotificationRemoved messageId is $messageId"
)
Log
Utils
.
d
(
"onNotificationRemoved messageId is $messageId"
)
handler
.
postDelayed
(
{
handler
.
postDelayed
(
{
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationRemoved"
,
messageId
)
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationRemoved"
,
messageId
)
...
@@ -24,7 +26,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
...
@@ -24,7 +26,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
}
override
fun
onNotification
(
context
:
Context
,
title
:
String
?,
summary
:
String
?,
extras
:
MutableMap
<
String
,
String
>?)
{
override
fun
onNotification
(
context
:
Context
,
title
:
String
?,
summary
:
String
?,
extras
:
MutableMap
<
String
,
String
>?)
{
Log
.
d
(
"RammusPushIntentService"
,
"onNotification title is $title, summary is $summary, extras: $extras"
)
Log
Utils
.
d
(
"onNotification title is $title, summary is $summary, extras: $extras"
)
handler
.
postDelayed
({
handler
.
postDelayed
({
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotification"
,
mapOf
(
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotification"
,
mapOf
(
...
@@ -36,7 +38,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
...
@@ -36,7 +38,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
}
override
fun
onMessage
(
context
:
Context
,
message
:
CPushMessage
)
{
override
fun
onMessage
(
context
:
Context
,
message
:
CPushMessage
)
{
Log
.
d
(
"RammusPushIntentService"
,
"onMessage title is ${message.title}, messageId is ${message.messageId}, content is ${message.content}"
)
Log
Utils
.
d
(
"onMessage title is ${message.title}, messageId is ${message.messageId}, content is ${message.content}"
)
handler
.
postDelayed
(
{
handler
.
postDelayed
(
{
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onMessageArrived"
,
mapOf
(
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onMessageArrived"
,
mapOf
(
"appId"
to
message
.
appId
,
"appId"
to
message
.
appId
,
...
@@ -50,7 +52,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
...
@@ -50,7 +52,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
override
fun
onNotificationOpened
(
p0
:
Context
?,
title
:
String
?,
summary
:
String
?,
extras
:
String
?)
{
override
fun
onNotificationOpened
(
p0
:
Context
?,
title
:
String
?,
summary
:
String
?,
extras
:
String
?)
{
Log
.
d
(
"RammusPushIntentService"
,
"onNotificationOpened title is $title, summary is $summary, extras: $extras"
)
Log
Utils
.
d
(
"onNotificationOpened title is $title, summary is $summary, extras: $extras"
)
handler
.
postDelayed
({
handler
.
postDelayed
({
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationOpened"
,
mapOf
(
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationOpened"
,
mapOf
(
"title"
to
title
,
"title"
to
title
,
...
@@ -61,7 +63,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
...
@@ -61,7 +63,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
}
override
fun
onNotificationReceivedInApp
(
p0
:
Context
?,
title
:
String
?,
summary
:
String
?,
extras
:
MutableMap
<
String
,
String
>?,
openType
:
Int
,
openActivity
:
String
?,
openUrl
:
String
?)
{
override
fun
onNotificationReceivedInApp
(
p0
:
Context
?,
title
:
String
?,
summary
:
String
?,
extras
:
MutableMap
<
String
,
String
>?,
openType
:
Int
,
openActivity
:
String
?,
openUrl
:
String
?)
{
Log
.
d
(
"RammusPushIntentService"
,
"onNotificationReceivedInApp title is $title, summary is $summary, extras: $extras"
)
Log
Utils
.
d
(
"onNotificationReceivedInApp title is $title, summary is $summary, extras: $extras"
)
handler
.
postDelayed
(
{
handler
.
postDelayed
(
{
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationReceivedInApp"
,
mapOf
(
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationReceivedInApp"
,
mapOf
(
"title"
to
title
,
"title"
to
title
,
...
@@ -75,7 +77,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
...
@@ -75,7 +77,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
}
override
fun
onNotificationClickedWithNoAction
(
context
:
Context
,
title
:
String
?,
summary
:
String
?,
extras
:
String
?)
{
override
fun
onNotificationClickedWithNoAction
(
context
:
Context
,
title
:
String
?,
summary
:
String
?,
extras
:
String
?)
{
Log
.
d
(
"RammusPushIntentService"
,
"onNotificationClickedWithNoAction title is $title, summary is $summary, extras: $extras"
)
Log
Utils
.
d
(
"onNotificationClickedWithNoAction title is $title, summary is $summary, extras: $extras"
)
handler
.
postDelayed
(
{
handler
.
postDelayed
(
{
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationClickedWithNoAction"
,
mapOf
(
RammusPushHandler
.
methodChannel
?.
invokeMethod
(
"onNotificationClickedWithNoAction"
,
mapOf
(
"title"
to
title
,
"title"
to
title
,
...
...
example/android/app/build.gradle
浏览文件 @
d1726609
...
@@ -71,4 +71,5 @@ dependencies {
...
@@ -71,4 +71,5 @@ dependencies {
implementation
"com.aliyun.ams:alicloud-android-third-push-oppo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-oppo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-vivo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-vivo:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-honor:$push_version"
implementation
"com.aliyun.ams:alicloud-android-third-push-honor:$push_version"
implementation
"com.blankj:utilcodex:1.31.1"
}
}
example/android/app/src/main/AndroidManifest.xml
浏览文件 @
d1726609
...
@@ -10,8 +10,6 @@
...
@@ -10,8 +10,6 @@
<application
<application
android:name=
".MyApplication"
android:name=
".MyApplication"
android:label=
"rammus_example"
android:label=
"rammus_example"
tools:replace=
"android:label"
android:usesCleartextTraffic=
"true"
android:icon=
"@mipmap/ic_launcher"
>
android:icon=
"@mipmap/ic_launcher"
>
<meta-data
<meta-data
...
@@ -64,13 +62,7 @@
...
@@ -64,13 +62,7 @@
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated=
"true"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
android:windowSoftInputMode=
"adjustResize"
>
<!-- This keeps the window background of the activity showing
until Flutter renders its first frame. It can be removed if
there is no splash screen (such as the default splash screen
defined in @style/LaunchTheme). -->
<meta-data
android:name=
"io.flutter.embedding.android.SplashScreenDrawable"
android:resource=
"@drawable/launch_background"
/>
<!-- Theme to apply as soon as Flutter begins rendering frames -->
<!-- Theme to apply as soon as Flutter begins rendering frames -->
<meta-data
<meta-data
...
...
example/android/app/src/main/kotlin/com/jarvanmo/rammus_example/MyApplication.kt
浏览文件 @
d1726609
package
com.jarvanmo.rammus_example
package
com.jarvanmo.rammus_example
import
com.jarvanmo.rammus.RammusPlugin
import
io.flutter.app.FlutterApplication
import
io.flutter.app.FlutterApplication
/***
/***
* Created by mo on 2019-06-25
* Created by mo on 2019-06-25
...
@@ -10,6 +9,5 @@ import io.flutter.app.FlutterApplication
...
@@ -10,6 +9,5 @@ import io.flutter.app.FlutterApplication
class
MyApplication
:
FlutterApplication
()
{
class
MyApplication
:
FlutterApplication
()
{
override
fun
onCreate
()
{
override
fun
onCreate
()
{
super
.
onCreate
()
super
.
onCreate
()
RammusPlugin
.
initPushService
(
this
)
}
}
}
}
\ No newline at end of file
example/lib/main.dart
浏览文件 @
d1726609
...
@@ -44,7 +44,6 @@ class _MyAppState extends State<MyApp> {
...
@@ -44,7 +44,6 @@ class _MyAppState extends State<MyApp> {
"公告信息"
,
"公告信息"
,
importance:
rammus
.
AndroidNotificationImportance
.
MAX
,
importance:
rammus
.
AndroidNotificationImportance
.
MAX
,
));
));
getDeviceId
();
rammus
.
setupNotificationManager
(
channels
);
rammus
.
setupNotificationManager
(
channels
);
rammus
.
onNotification
.
listen
((
data
)
{
rammus
.
onNotification
.
listen
((
data
)
{
...
@@ -115,8 +114,24 @@ class _MyAppState extends State<MyApp> {
...
@@ -115,8 +114,24 @@ class _MyAppState extends State<MyApp> {
appBar:
AppBar
(
appBar:
AppBar
(
title:
const
Text
(
'Plugin example app'
),
title:
const
Text
(
'Plugin example app'
),
),
),
body:
Center
(
body:
Column
(
child:
Text
(
'Running on:
$_platformVersion
\n
'
),
children:
[
Center
(
child:
Text
(
'Running on:
$_platformVersion
\n
'
),
),
TextButton
(
onPressed:
()
{
getDeviceId
();
},
child:
Text
(
"getDeviceId"
),
),
TextButton
(
onPressed:
()
{
rammus
.
register
();
},
child:
Text
(
"register"
),
),
],
),
),
),
),
);
);
...
...
pubspec.yaml
浏览文件 @
d1726609
name
:
rammus
name
:
rammus
description
:
Flutter plugin for AliCloud push, including both android and ios. Receive background messages and notifications.
description
:
Flutter plugin for AliCloud push, including both android and ios. Receive background messages and notifications.
version
:
2.5.
0
version
:
2.5.
1
homepage
:
https://github.com/OpenFlutter/rammus
homepage
:
https://github.com/OpenFlutter/rammus
environment
:
environment
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论