更新时间:2024-01-10 09:09:19
本文介绍如何为 Android App 集成华为平台的消息推送。
申请华为推送的方式,请参考 申请华为推送。您需要将申请到的 AppID、AppKey 等信息复制到 涂鸦 IoT 平台 中对应应用的配置中。
请勿将信息配置错误:
涂鸦使用华为推送的 token
方式进行推送。华为推送的 SDK 接入、初始化请按照 华为官方文档 进行接入,并完成《开发准备》和《基础能力》部分。
参考如下代码,在 Android O 以上创建涂鸦使用的推送 Channel。
// channel id
public static final String[] channelIds = {
"tuya_common",
"tuya_shortbell",
"tuya_longbell",
"tuya_doorbell"
};
// channel name
public static final String[] channelNames = {
context.getString(R.string.push_channel_common),
context.getString(R.string.push_channel_shortbell),
context.getString(R.string.push_channel_longbell),
context.getString(R.string.push_channel_doorbell)
};
// 通知渠道的自定义声音文件
public static final String[] channelSounds = {
"android.resource://" + context.getPackageName() + "/" + R.raw.tuya_common,
"android.resource://" + context.getPackageName() + "/" + R.raw.tuya_shortbell,
"android.resource://" + context.getPackageName() + "/" + R.raw.tuya_longbell,
"android.resource://" + context.getPackageName() + "/" + R.raw.tuya_doorbell
};
for (int i = 0; i < TuyaPushChnnels.channelIds.length; i++) {
createNotificationChannel(channelIds[i], channelNames[i], importance, soundPath);
}
@TargetApi(Build.VERSION_CODES.O)
private static void createNotificationChannel(String channelId, String channelName, int importance, String soundPath) {
NotificationChannel channel = new NotificationChannel(channelId, channelName, importance);
channel.setSound(Uri.parse(soundPath), Notification.AUDIO_ATTRIBUTES_DEFAULT);
channel.setVibrationPattern(new long[]{
300, 1000, 300, 1000
});
channel.canBypassDnd();
channel.setBypassDnd(true);
channel.setLockscreenVisibility(VISIBILITY_SECRET);
NotificationManager notificationManager = (NotificationManager) MicroContext.getApplication().getSystemService(
NOTIFICATION_SERVICE);
notificationManager.createNotificationChannel(channel);
}
在完成接入和初始化工作后,您便可以获取 华为推送的 token,将 token
注册到涂鸦。
public static final String PUSH_PROVIDER_HUAWEI = "huawei";
String pushtoken = HmsInstanceId.getInstance(activity).getToken(appId, "HCM");
if (!TextUtils.isEmpty(pushtoken)) {
Log.i(TAG, "get token:" + pushtoken);
TuyaHomeSdk.getPushInstance().registerDevice(pushtoken, PUSH_PROVIDER_HUAWEI, new IResultCallback() {
@Override
public void onError(String code, String error) {
Log.e(TAG, "registerDevice error: " + code + " " + error);
}
@Override
public void onSuccess() {
Log.i(TAG, "register push token success");
}
});
}
在应用的启动页的 activity
中(例如 Splash Activity)配置:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="包名"
android:path="/deeplink"
android:scheme="@string/tuya_jump_scheme" />
</intent-filter>
包名:填写您应用的包名。
tuya_jump_scheme
:填写渠道标识符的内容。
完成后,在设备等触发消息推送后,通知栏就会有相应的推送显示。
当用户点击通知栏的通知后,华为自定义数据在启动页(上面配置了 intent-filter
)的 activity
的 intent
中可以获取自定义的数据,获取数据的 key 值为 hw_link
。
Intent intent = getIntent();
if (intent != null) {
String message = intent.getStringExtra("hw_link");
if (!TextUtils.isEmpty(pushLink)) {
String decodeMessage = new String(Base64.decodeBase64(message.getBytes()));
// TODO
}
}
该内容对您有帮助吗?
是意见反馈该内容对您有帮助吗?
是意见反馈