- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
As highlighted in the attached screen shot, how can we change the icon that appears once you double click home button after app is launched. It appears only in IOS 9. All my previously IntelXDK build apps once installed on IOS 9 are showing Cordova Icon.
Thanks
Fawaad Ahmed
- Tags:
- HTML5
- Intel® XDK
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm not sure which icon that would be, but see the list of icons in the hello-cordova sample (inside the intelxdk.config.additions.xml file) for a way to add icons that are not included in the XDK icon UI on the Projects tab. I suspect that icon is covered by the list in that file inside that demo app.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am having this problem too, build 2673.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I worked this out!
Add the following lines to the 'intelxdk.config.additions.xml' file (the "launch_icons" directory is contained within the 'www' directory):
<!-- +iOS -->
<icon platform="ios" src="launch_icons/ios/wiilo_icon_29x29.png" width="29" height="29"/>
<icon platform="ios" src="launch_icons/ios/wiilo_icon_40x40.png" width="40" height="40"/>
<icon platform="ios" src="launch_icons/ios/wiilo_icon_58x58.png" width="58" height="58"/>
<icon platform="ios" src="launch_icons/ios/wiilo_icon_80x80.png" width="80" height="80"/>
<icon platform="ios" src="launch_icons/ios/wiilo_icon_87x87.png" width="87" height="87"/>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Just add following icons to your intelxdk.config.additions.xml. The icons should be placed inside www folder. In the example below i have placed them inside pkg directory which resides inside www.
<icon platform="ios" src="pkg/icon-40.png" width="40" height="40" />
<icon platform="ios" src="pkg/icon-40@2x.png" width="80" height="80" />
<icon platform="ios" src="pkg/icon-40@3x.png" width="120" height="120" />
<!-- iPhone / iPod Touch -->
<icon platform="ios" src="pkg/icon.png" width="57" height="57" />
<icon platform="ios" src="pkg/icon@2x.png" width="114" height="114" />
<icon platform="ios" src="pkg/icon-60.png" width="60" height="60" />
<icon platform="ios" src="pkg/icon-60@2x.png" width="120" height="120" />
<icon platform="ios" src="pkg/icon-60@3x.png" width="180" height="180" />
<!-- iPad -->
<icon platform="ios" src="pkg/icon-72.png" width="72" height="72" />
<icon platform="ios" src="pkg/icon-72@2x.png" width="144" height="144" />
<icon platform="ios" src="pkg/icon-76.png" width="76" height="76" />
<icon platform="ios" src="pkg/icon-76@2x.png" width="152" height="152" />
<!-- iPhone Spotlight and Settings Icon -->
<icon platform="ios" src="pkg/icon-small.png" width="29" height="29" />
<icon platform="ios" src="pkg/icon-small@2x.png" width="58" height="58" />
<icon platform="ios" src="pkg/icon-small@3x.png" width="87" height="87" />
<!-- iPad Spotlight and Settings Icon -->
<icon platform="ios" src="pkg/icon-50.png" width="50" height="50" />
<icon platform="ios" src="pkg/icon-50@2x.png" width="100" height="100" />

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