我现在已经使用this
中提到的代码多次尝试过这种方法使用this实用程序生成的图标
推送通知初始化代码
platform/android/res
ic_notification.png
中的文件夹,它们都包含生成的Cordova version 6.0.
但我的通知仍然没有显示图标。它显示空白的白色方块。
Ionic version 1.7.14
android-minSdkVersion: 16
android-targetSdkVersion: 23
ControlInfo
有人能够让这个工作吗?
答案 0 :(得分:0)
原来上面的设置没有任何问题。通知有效负载需要具有正确的图标名称。
const gcmMessage = new gcm.Message({
priority: 'high',
notification: {
title: 'Title',
icon: 'ic_notification',
body: 'test'
}
});