Software Archive
Read-only legacy content

Ios push icon

ale_d_
Beginner
1,811 Views
Hello, why when I receive push notifies in iOS the icon of the notify is the standard cordova icon instead of that of my app? I provided every icon as requested in xdk for both iOS and Android...infact in android everything works fine. Help me plz
0 Kudos
3 Replies
Fab_V_
New Contributor I
1,811 Views

Hello,

i had the same problem and i found in the docs.
Add these lines in your additions.xml, replace path by your path :

<!-- iPhone Spotlight and Settings Icon -->
<icon platform="ios" src="images/splash/icon-small.png" width="29" height="29" />
<icon platform="ios" src="images/splash/[email protected]" width="58" height="58" />
<icon platform="ios" src="images/splash/[email protected]" width="87" height="87" />

 

0 Kudos
Fab_V_
New Contributor I
1,811 Views

Another thing, on some old iphone device, your may have to add these line otherwise the app icon is the standard cordova.

 

<!-- +iOS --><icon platform="ios" src="images/splash/72x72.png" width="72" height="72" />
<!-- +iOS --><icon platform="ios" src="images/splash/57x57.png" width="57" height="57" />

 

0 Kudos
John_H_Intel2
Employee
1,811 Views

Ven is correct. We only require the min icons. For a full list of icons that you can provide, you can see the apple docs here

https://developer.apple.com/library/ios/qa/qa1686/_index.html

0 Kudos
Reply