Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
17060 Discussions

XDK 2496 uses ios icons even for android

Alessandro_S_
Beginner
678 Views

I've configured my additions.xml like this

 

<!-- iOS icons -->
<!-- Spotlight Icon -->
    <icon platform="ios" src="ios/icon-40.png" width="40" height="40" />
    <icon platform="ios" src="ios/icon-40@2x.png" width="80" height="80" />
    <icon platform="ios" src="ios/icon-40@3x.png" width="120" height="120" />
<!-- iPhone / iPod Touch -->
   <icon platform="ios" src="ios/icon.png" width="57" height="57" />
    <icon platform="ios" src="ios/icon@2x.png" width="114" height="114" />
    <icon platform="ios" src="ios/icon-60.png" width="60" height="60" />
    <icon platform="ios" src="ios/icon-60@2x.png" width="120" height="120" />
    <icon platform="ios" src="ios/icon-60@3x.png" width="180" height="180" />
<!-- iPad -->
    <icon platform="ios" src="ios/icon-72.png" width="72" height="72" />
    <icon platform="ios" src="ios/icon-72@2x.png" width="144" height="144" />
    <icon platform="ios" src="ios/icon-76.png" width="76" height="76" />
    <icon platform="ios" src="ios/icon-76@2x.png" width="152" height="152" />
<!-- iPhone Spotlight and Settings Icon -->
    <icon platform="ios" src="ios/icon-small.png" width="29" height="29" />
    <icon platform="ios" src="ios/icon-small@2x.png" width="58" height="58" />
    <icon platform="ios" src="ios/icon-small@3x.png" width="87" height="87" />
<!-- iPad Spotlight and Settings Icon -->
    <icon platform="ios" src="ios/icon-50.png" width="50" height="50" />
    <icon platform="ios" src="ios/icon-50@2x.png" width="100" height="100" />

as suggested a few days ago from someone from Intel.

Well, I notice that if I set my icons (and are different) for android version of the app, the android build has ios icons.

How is it possible?

0 Kudos
3 Replies
PaulF_IntelCorp
Employee
678 Views

This is an issue in the build system that I believe has been fixed. Are you still experiencing this problem?

0 Kudos
Alessandro_S_
Beginner
678 Views

I fixed by putting this code in <platform name="ios"> section

0 Kudos
PaulF_IntelCorp
Employee
678 Views

Interesting, that usually fails for me! Do you have a "source directory" in your project directory? Usually, the "source directory" is named www. Or is your index.html file located at the root of your project directory?

0 Kudos
Reply