in ionic push notifications, we can add an “icon”: “xxxxx” in the “android” array to change the new (small) icon path,
var push = new Ionic.Push({ "debug": true, "pluginConfig": { "android": { "iconColor": "#343434", "icon": "abc" } } });
where abc.png is located in the platform / android / res / drawable folder.
but are there any methods to change the big push icon? Since iconColor is valid, but I test many times, I cannot change the background color to a large image.
anyone can help me .. thanks!
source share