- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It seems like once I upgraded my test device (iPhone 6) to iOS 9, all my notification icons are now switched over to using the default cordova one instead of the app's.
Here's a screenshot to the particular icon I'm referring to. (note: This was working properly pre iOS 9)
- Tags:
- HTML5
- Intel® XDK
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did you include the correct icon with the additions file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Originally, I've only included one png (80x80) in my additions file to get the icon working. Now, I've added them all to see if it fixes the issue but unfortunately it does not.
Here's how my additions look like now:
<icon platform="ios" src="images/icons/80x80.png" width="80" height="80" />
<icon platform="ios" src="images/icons/87x87.png" width="87" height="87" />
<icon platform="ios" src="images/icons/75x75.png" width="75" height="75" />
<icon platform="ios" src="images/icons/66x66.png" width="66" height="66" />
<icon platform="ios" src="images/icons/180x180.png" width="180" height="180" />
Note: Prior to iOS9, it was working great with just the 80x80 png
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
This is the recommended list we have for iOS.
<!-- iOS icons and splash screens --> <!-- Spotlight Icon --> <icon platform="ios" src="pkg/ios/icon-40.png" width="40" height="40" /> <icon platform="ios" src="pkg/ios/icon-40@2x.png" width="80" height="80" /> <icon platform="ios" src="pkg/ios/icon-40@3x.png" width="120" height="120" /> <!-- iPhone / iPod Touch --> <icon platform="ios" src="pkg/ios/icon.png" width="57" height="57" /> <icon platform="ios" src="pkg/ios/icon@2x.png" width="114" height="114" /> <icon platform="ios" src="pkg/ios/icon-60.png" width="60" height="60" /> <icon platform="ios" src="pkg/ios/icon-60@2x.png" width="120" height="120" /> <icon platform="ios" src="pkg/ios/icon-60@3x.png" width="180" height="180" /> <!-- iPad --> <icon platform="ios" src="pkg/ios/icon-72.png" width="72" height="72" /> <icon platform="ios" src="pkg/ios/icon-72@2x.png" width="144" height="144" /> <icon platform="ios" src="pkg/ios/icon-76.png" width="76" height="76" /> <icon platform="ios" src="pkg/ios/icon-76@2x.png" width="152" height="152" /> <!-- iPhone Spotlight and Settings Icon --> <icon platform="ios" src="pkg/ios/icon-small.png" width="29" height="29" /> <icon platform="ios" src="pkg/ios/icon-small@2x.png" width="58" height="58" /> <icon platform="ios" src="pkg/ios/icon-small@3x.png" width="87" height="87" /> <!-- iPad Spotlight and Settings Icon --> <icon platform="ios" src="pkg/ios/icon-50.png" width="50" height="50" /> <icon platform="ios" src="pkg/ios/icon-50@2x.png" width="100" height="100" />
This is missing i believe. <icon platform="ios" src="pkg/ios/icon-small@2x.png" width="58" height="58" />
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Refer this article for further details
https://software.intel.com/en-us/xdk/docs/cordova-for-ios-build-options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, thank you! Issue resolved, got the right icon to be displayed now.
Added this line:
<icon platform=
"ios"
src=
"pkg/ios/icon.png"
width=
"57"
height=
"57"
/>

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page