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

Javascript Ioinic+;phonegap推送-通知图标不显示,javascript,android,cordova,push-notification,ionic-framework,Javascript,Android,Cordova,Push Notification,Ionic Framework,现在,我已经使用中提到的代码尝试了几次 使用实用程序生成的图标 推送通知初始化代码 var push = PushNotification.init({ android: { senderID: "gcm_id", icon: "ic_notification", iconColor: "black" } }); platform/android/res中的文件夹

现在,我已经使用中提到的代码尝试了几次

使用实用程序生成的图标

推送通知初始化代码

 var push = PushNotification.init({
          android: {
            senderID: "gcm_id",
            icon: "ic_notification",
            iconColor: "black"
          }
        });
platform/android/res
中的文件夹都包含生成的
ic_notification.png

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

Cordova 6.0版。
爱奥尼亚1.7.14版 android minSdkVersion:16
android targetSdkVersion:23


有人能让它工作吗

结果表明,上述设置没有任何错误。通知负载需要具有正确的图标名称

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