Ioinic + phonegap推送 - 通知图标不显示

时间:2016-03-23 15:10:08

标签: javascript android cordova push-notification ionic-framework

我现在已经使用this

中提到的代码多次尝试过这种方法

使用this实用程序生成的图标 enter image description here

推送通知初始化代码

platform/android/res

ic_notification.png中的文件夹,它们都包含生成的Cordova version 6.0.

enter image description here

但我的通知仍然没有显示图标。它显示空白的白色方块。

enter image description here

Ionic version 1.7.14 android-minSdkVersion: 16 android-targetSdkVersion: 23 ControlInfo

有人能够让这个工作吗?

1 个答案:

答案 0 :(得分:0)

原来上面的设置没有任何问题。通知有效负载需要具有正确的图标名称。

const gcmMessage = new gcm.Message({
   priority: 'high',
   notification: {
     title: 'Title',
     icon: 'ic_notification',
     body: 'test'
   }
});
相关问题