我能夠收到推送通知和下面的推送通知是我的代碼寫在如何更改圖標/徽標離子2
let push = Push.init({
android: {
senderID: '907xxxxx860',
icon: 'icon'
},
ios: {
alert: 'true',
badge: true,
sound: 'false'
},
windows: {}
});
我在android版測試5
在我的資產文件夾中,我在此路徑中有一個圖像assets/images/home/KmartLogo.png
。我想要這個圖像作爲我的標誌爲Android。
我該如何做到這一點。根據該文件doc我試圖給的路徑在這樣icon: 'icon'
在這個icon:assets/images/home/KmartLogo.png
,但它不工作我怎樣才能改變我的標誌
你是說它顯示白色圖標?如果是這樣的話,那隻針對Android 5的具體問題僅僅是因爲Android 5使用了模具圖標。 – Djamware
也許你得到的路徑錯誤..試試'。/ assets/images/home/KmartLogo.png' –
我試過你給我的方式我不能得到標識@suraj –