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

修改推送 插件

上级 66dfeb53
...@@ -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"
} }
...@@ -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") LogUtils.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()}") LogUtils.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,
......
...@@ -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") LogUtils.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") LogUtils.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}") LogUtils.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") LogUtils.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") LogUtils.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") LogUtils.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,
......
...@@ -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"
} }
...@@ -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
......
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
...@@ -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"),
),
],
), ),
), ),
); );
......
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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论