Software Archive
Read-only legacy content
17061 Discussions

IOS 9.0 Screen Minimize Icon

Fawaad_A_
Beginner
621 Views

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

0 Kudos
4 Replies
PaulF_IntelCorp
Employee
621 Views

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.

0 Kudos
Rob_Welan
New Contributor I
621 Views

I am having this problem too, build 2673. 

0 Kudos
Rob_Welan
New Contributor I
621 Views

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"/>

 

0 Kudos
Fawaad_A_
Beginner
621 Views

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" />

 

0 Kudos
Reply