一 前言
集成原因,由于公司项目集成极光推送,Android 8+以上的手机,app 在未运行的情况下接收不到消息,而且现在SDK版本要更新到26,华为手机有影响。
二 集成
华为推送集成,浪费了我不少时间,主要还是文档有些乱。集成之后我把它分为三部分,一,配置集成环境;二,处理接收消息。三,点击通知栏,跳转到相应页面。
配置集成环境
AndroidStudo依赖(我这里只集成推送)
compile 'com.huawei.android.hms:push:2.6.3.301'
SDK获取 下载相应 HMSAgent_2.6.3.301.zip 版本,下载完成后,
运行GetHMSAgent_cn.bat文件,
输入相应的信息包名和appid(这个需要自行申请),有一个支付id,没有可以瞎填;
选择完成之后把copysrc目录的java文件复制到自己的项目里;
AppManifestConfig.xml复制到自己的app的AndroidManifest.xml中;
初始化与激活
首先根据emui版本判断是否可以使用华为推送
/**
* 判断是否可以使用华为推送
*
* @return
*/
public static Boolean canHuaWeiPush() {
int emuiApiLevel = 0;
try {
Class cls = Class.forName("android.os.SystemProperties");
Method method = cls.getDeclaredMethod("get", new Class[]{String.class});
emuiApiLevel = Integer.parseInt((String) method.invoke(cls, new Object[]{"ro.build.hw_emui_api_level"}));
} catch (Exception e) {
e.printStackTrace();
return false;
}
return emuiApiLevel > 5.0;
}
初始化
HMSAgent.init(application);
激活Token,并且发送到服务器
// 连接华为服务器
public static void HUAWEIConnect(Activity activity) {
HMSAgent.connect(activity, new ConnectHandler() {
@Override
public void onConnect(int rst) {
LogUtils.e("connect result" + rst);
}
});
}
/**
* 激活华为token
*/
public static void getToken() {
LogUtils.e("get token: begin");
HMSAgent.Push.getToken(new GetTokenHandler() {
@Override
public void onResult(int rst) {
LogUtils.e("token result" + rst);
}
});
}
获取的token,会在相应的广播接收器中
需要在Activity或者application中注册IPushCallback监听,获取token,在发送自己的后台服务器。
处理接收消息
华为一般有两个revicer,作用不同。下面这个根据 <intent-filter>,可以看出是用来接收token的。另外说一下,消息分为透传消息和通知栏消息。我使用的是通知栏消息,这个Revicer的透传消息没用用到。
<receiver android:name="包名.HuaweiPushRevicer"
android:permission="cn.gydata.bidding.permission.PROCESS_PUSH_MSG">
<intent-filter>
<!-- 必须,用于接收token -->
<action android:name="com.huawei.android.push.intent.REGISTRATION" />
<!-- 必须, 用于接收透传消息 -->
<action android:name="com.huawei.android.push.intent.RECEIVE" />
<!-- 必须, 用于接收通知栏消息点击事件 此事件不需要开发者处理,只需注册就可以-->
<action android:name="com.huawei.intent.action.PUSH_DELAY_NOTIFY"/>
</intent-filter>
</receiver>
另外一个Revicer,两个Revicer不同之处在与 <intent-filter>,功能也就不同。这
<receiver android:name="相应包名.HuaWeiRevicer">
<intent-filter>
<!-- 用于点击通知栏或通知栏上的按钮后触发onEvent回调 -->
<action android:name="com.huawei.android.push.intent.CLICK" />
<!-- 查看push通道是否连接, 不查看则不需要 -->
<action android:name="com.huawei.intent.action.PUSH_STATE"/>
</intent-filter>
</receiver>
个Revicer的作用在于接收通知栏触发时间以及通知栏消息
点击通知栏跳转到相应页面
在AndroidManifest.xml中声明一个透明activity,用来中转到想要的页面
<activity
android:name="包名(自定义).HWPushTranslateActivity"
android:theme="@android:style/Theme.Translucent">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="cn.test.android.push(自定义)"
android:path="/notification(自定义)"
android:scheme="huaweipush(自定义)" />
</intent-filter>
</activity>
生成相应的intentUri,把它给后台,填写到华为的服务器上。点击通知栏消息,就可以直接跳转到这个HWPushTranslateActivity。
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("huaweipush://cn.test.android.push/notification?action=push(自定义action参数)" ));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Intent.ACTION_VIEW);
String intnetUri = intent.toUri(Intent.URI_INTENT_SCHEME);
Log.d("hwpush", intnetUri);
生成的intnetUri给后台就行。华为就可以隐式跳转到HWPushTranslateActivity,HWPushTranslateActivity里面获取action再跳转到相应的页面就可以了。
String action = getIntent().getData().getQueryParameter("action")
三 总结
难点在于用GetHMSAgent_cn.bat生成符合项目的文件,也不是难就是文档不清楚。另外,点击通知栏不打开启动页,需要配置HWPushTranslateActivity。