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

修改推送 插件

上级 66dfeb53
......@@ -61,4 +61,5 @@ dependencies {
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-honor:$push_version"
implementation "com.blankj:utilcodex:1.31.1"
}
......@@ -2,22 +2,24 @@ package com.jarvanmo.rammus
import android.os.Bundle
import android.os.Handler
import android.os.Looper
import android.os.PersistableBundle
import android.util.Log
import com.alibaba.sdk.android.push.AndroidPopupActivity
import com.blankj.utilcode.util.LogUtils
import org.json.JSONObject
class PopupPushActivity: AndroidPopupActivity() {
private val handler = Handler()
private val handler = Handler(Looper.getMainLooper())
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))
var jsonExtras = JSONObject()
for (key in extras.keys){
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(
"title" to title,
"summary" to summary,
......
......@@ -2,9 +2,11 @@ package com.jarvanmo.rammus
import android.content.Context
import android.os.Handler
import android.os.Looper
import android.util.Log
import com.alibaba.sdk.android.push.AliyunMessageIntentService
import com.alibaba.sdk.android.push.notification.CPushMessage
import com.blankj.utilcode.util.LogUtils
/***
* Created by mo on 2019-06-25
......@@ -13,10 +15,10 @@ import com.alibaba.sdk.android.push.notification.CPushMessage
**/
class RammusPushIntentService : AliyunMessageIntentService() {
private val handler = Handler()
private val handler = Handler(Looper.getMainLooper())
override fun onNotificationRemoved(context: Context, messageId: String?) {
Log.d("RammusPushIntentService","onNotificationRemoved messageId is $messageId")
LogUtils.d("onNotificationRemoved messageId is $messageId")
handler.postDelayed( {
RammusPushHandler.methodChannel?.invokeMethod("onNotificationRemoved", messageId)
......@@ -24,7 +26,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
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({
RammusPushHandler.methodChannel?.invokeMethod("onNotification", mapOf(
......@@ -36,7 +38,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
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( {
RammusPushHandler.methodChannel?.invokeMethod("onMessageArrived", mapOf(
"appId" to message.appId,
......@@ -50,7 +52,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
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({
RammusPushHandler.methodChannel?.invokeMethod("onNotificationOpened", mapOf(
"title" to title,
......@@ -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?) {
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( {
RammusPushHandler.methodChannel?.invokeMethod("onNotificationReceivedInApp", mapOf(
"title" to title,
......@@ -75,7 +77,7 @@ class RammusPushIntentService : AliyunMessageIntentService() {
}
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( {
RammusPushHandler.methodChannel?.invokeMethod("onNotificationClickedWithNoAction", mapOf(
"title" to title,
......
......@@ -71,4 +71,5 @@ dependencies {
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-honor:$push_version"
implementation "com.blankj:utilcodex:1.31.1"
}
......@@ -10,8 +10,6 @@
<application
android:name=".MyApplication"
android:label="rammus_example"
tools:replace="android:label"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">
<meta-data
......@@ -64,13 +62,7 @@
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
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 -->
<meta-data
......
package com.jarvanmo.rammus_example
import com.jarvanmo.rammus.RammusPlugin
import io.flutter.app.FlutterApplication
/***
* Created by mo on 2019-06-25
......@@ -10,6 +9,5 @@ import io.flutter.app.FlutterApplication
class MyApplication:FlutterApplication() {
override fun onCreate() {
super.onCreate()
RammusPlugin.initPushService(this)
}
}
\ No newline at end of file
......@@ -44,7 +44,6 @@ class _MyAppState extends State<MyApp> {
"公告信息",
importance: rammus.AndroidNotificationImportance.MAX,
));
getDeviceId();
rammus.setupNotificationManager(channels);
rammus.onNotification.listen((data) {
......@@ -115,8 +114,24 @@ class _MyAppState extends State<MyApp> {
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Running on: $_platformVersion\n'),
body: Column(
children: [
Center(
child: Text('Running on: $_platformVersion\n'),
),
TextButton(
onPressed: () {
getDeviceId();
},
child: Text("getDeviceId"),
),
TextButton(
onPressed: () {
rammus.register();
},
child: Text("register"),
),
],
),
),
);
......
name: rammus
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
environment:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论