Android保活,杀死app后收到推送,推送收不到

Android保活,杀死app后收到推送,推送收不到。

其实指向的都是一个问题,杀死app后,我还要能收到推送。

用阿里推送的辅助通道功能可以实现

https://help.aliyun.com/document_detail/30067.html?spm=a2c4g.11186623.6.590.598b7fa8XmiUlS#h2-7-

辅助通道一般只接入,小米,华为,oppo,vivo,魅族这5个厂商的,

其中的一些厂商需要额外的依赖。

阿里的文档没有给出正确的依赖,

正确的,包含5大厂商的依赖如下:

api 'com.aliyun.ams:alicloud-android-push:3.1.9@aar'

api 'com.aliyun.ams:alicloud-android-utils:1.1.5'

api 'com.aliyun.ams:alicloud-android-beacon:1.0.3'

api 'com.aliyun.ams:alicloud-android-ut:5.4.3'

api 'com.aliyun.ams:alicloud-android-third-push:3.0.8@aar'

api 'com.aliyun.ams:huawei-push:2.6.3.305'

api 'com.aliyun.ams:huawei-push-base:2.6.3.305'

api 'com.aliyun.ams:meizu-push:3.8.3-fix'

阿里sdk的使用主要通过这个类

public class PushService {

private static boolean IS_INIT_PUSH = false;

/**

* 初始化云推送通道

*

* @param applicationContext

*/

public static void registerPushService(Context applicationContext) {

PushServiceFactory.init(applicationContext);

final CloudPushService pushService = PushServiceFactory.getCloudPushService();

// pushService.setDebug(BuildConfig.DEBUG);

if (!IS_INIT_PUSH){

pushService.register(applicationContext, new CommonCallback() {

@Override

public void onSuccess(String response) {

Log.d("Push", "init cloudchannel success "+response);

IS_INIT_PUSH = true;

pushServiceBindAccount(applicationContext);

}

@Override

public void onFailed(String errorCode, String errorMessage) {

Log.d("Push", "init cloudchannel failed -- errorcode:" + errorCode + " -- errorMessage:" + errorMessage);

}

});

}

}

public static void pushServiceBindAccount(Context applicationContext) {

final CloudPushService pushService = PushServiceFactory.getCloudPushService();

String token = String.valueOf(PAccountManage.INSTANCE.getSp().getAccountId());

//需要绑定到账号

if (IS_INIT_PUSH && !TextUtils.isEmpty(token)) {

pushService.bindAccount(token, new CommonCallback() {

@Override

public void onSuccess(String s) {

Log.d("Push", "bindAccount onSuccess");

initThirdPush(applicationContext);

}

@Override

public void onFailed(String s, String s1) {

Log.d("Push", "bindAccount onFailed");

}

});

}else {

Log.d("Push", "bindAccount onFailed2");

}

}

public static void pushServiceUnBindAccount(Context applicationContext) {

final CloudPushService pushService = PushServiceFactory.getCloudPushService();

if (IS_INIT_PUSH){

pushService.unbindAccount(new CommonCallback() {

@Override

public void onSuccess(String s) {

Log.d("Push", "unbindAccount onSuccess");

unRegisterThirdPush(applicationContext);

}

@Override

public void onFailed(String s, String s1) {

Log.d("Push", "unbindAccount onFailed");

}

});

}else {

Log.d("Push", "unbindAccount onFailed2");

}

}

private static void initThirdPush(Context applicationContext) {

// 注册方法会自动判断是否支持小米系统推送,如不支持会跳过注册。

MiPushRegister.register(applicationContext, "", "");

// 注册方法会自动判断是否支持华为系统推送,如不支持会跳过注册。

HuaWeiRegister.register((Application)applicationContext );

//GCM/FCM辅助通道注册

// GcmRegister.register(applicationContext, "", ""); //sendId/applicationId为步骤获得的参数

// OPPO通道注册

OppoRegister.register(applicationContext, "", ""); // appKey/appSecret在OPPO通道开发者平台获取

// VIVO通道注册

VivoRegister.register(applicationContext);

//魅族

MeizuRegister.register(applicationContext, "", ""); // appId/appkey在魅族开发者平台获取

}

private static void unRegisterThirdPush(Context applicationContext){

MiPushRegister.unregister(applicationContext);

// HuaWeiRegister.registerBundle((Application)applicationContext ,false);

OppoRegister.unregister(); // appKey/appSecret在OPPO通道开发者平台获取

VivoRegister.unregister();

// MeizuRegister.register(applicationContext, "", ""); // appId/appkey在魅族开发者平台获取

}

}

打开app需要初始化阿里sdk,Application里:

override fun onCreate() {

initPushModule()

}

private fun initPushModule() {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

PushManager.initChannel()

}

if ( (isMainProcess(this@ParentApp) || isTargetProcess(this@ParentApp, "${applicationContext.packageName}:channel"))) {

PushService.registerPushService(this@ParentApp)

}

}

用户登录时调用:

PushService.pushServiceBindAccount(this)

退出登录时调用:

PushService.pushServiceUnBindAccount(this)

创建通道的代码:

// 通知渠道的id

var mChannelId = "aierman"

// 用户可以看到的通知渠道的名字.

private var mChannelName = "哈喽萝博推送通知"

// 用户可以看到的通知渠道的描述

private var mChannelDescription = "哈喽萝博推推送通知"

fun initChannel() {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

val notificationManager = BaseApp.app.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager

val channel = NotificationChannel(mChannelId, mChannelName, NotificationManager.IMPORTANCE_HIGH)

// 配置通知渠道的属性

channel.description = mChannelDescription

// 设置通知出现时的闪灯(如果 android 设备支持的话)

channel.enableLights(true)

channel.lightColor = Color.RED

// 设置通知出现时的震动(如果 android 设备支持的话)

channel.enableVibration(true)

channel.vibrationPattern = longArrayOf(100, 200, 300, 400, 500, 400, 300, 200, 400)

// 设置通知出现时声音,默认通知是有声音的

channel.setSound(Settings.System.DEFAULT_NOTIFICATION_URI, Notification.AUDIO_ATTRIBUTES_DEFAULT);

channel.setShowBadge(true)//打开脚标

notificationManager.createNotificationChannel(channel)

}

}

别忘了在清单文件加入以下配置:

<meta-data

android:name="com.huawei.hms.client.appid"

android:value="" />

<meta-data

android:name="com.vivo.push.api_key"

android:value="" />

<meta-data

android:name="com.vivo.push.app_id"

android:value="" />

<meta-data

android:name="com.alibaba.app.appkey"

android:value="" /> <!-- 阿里推送 appSecret -->

<meta-data

android:name="com.alibaba.app.appsecret"

android:value="" /> <!-- 消息接收监听器 (用户可自主扩展) -->

<activity

android:name="com.hellorobotedu.aiparent.push.PopupPushActivity"

android:exported="true"/>

对于PopupPushActivity,记得:

class PopupPushActivity : AndroidPopupActivity()

最后一定要记得在阿里推送控制台的应用配置,配置你各个手机厂商的key,不然辅助通道不会生效。

坑:

1.华为,记得配置SHA256,不然辅助通道不生效见图

image.png

2.推送不到达的意外情况处理:

(1).杀死app后立即进行推送是收不到的,因为阿里那边不知道app已经死了,

辅助弹窗和正式通道都推不过来。

比如杀死app后立即推送了一个“推送a”,那app肯定是收不到的,

那只能等下一次有效的推送(有效指的是离杀死app的时间足够久的推送),比如“推送b”,

“推送b”推送了之后,“推送a”和”推送b”才可以一起收到.

(2).切换账号问题,

举例,我已经在oppo手机登录,杀死app,

再在小米手机登录,再杀死app

那么再次推送还是会推到oppo,因为oppo和阿里的绑定没有解除,

如何解除?在oppo上执行退出登录,或者在小米手机上运行app足够久。

end

如果你觉得这篇文章对你有所帮助,不妨点一个赞,作者会非常高兴的。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,076评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,658评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,732评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,493评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,591评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,598评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,601评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,348评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,797评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,114评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,278评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,953评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,585评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,202评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,180评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,139评论 2 352