在离子推送通知中,我们可以在"android"数组中添加"icon":"xxxxx"来更改新的(小)图标路径,
var push = new Ionic.Push({
"debug": true,
"pluginConfig": {
"android": {
"iconColor": "#343434",
"icon": "abc"
}
}
});
Run Code Online (Sandbox Code Playgroud)
其中abc.png来自platform/android/res/drawable文件夹.
但是有什么方法可以改变push的大图标吗?因为iconColor有效,但我测试了很多次,我不能将颜色背景更改为大图像.
任何人都可以帮助我..谢谢!!