Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Submitting an app iOS with Application Loader got error missing icons...

Leonidas_S_
New Contributor I
7,931 Views

Submitting an app iOS with Application Loader got error missing icons... see attached shot ... 

what to do? first time tried do submit... i put all iOS icons in xdk app settings... well

 

 

0 Kudos
1 Solution
PaulF_IntelCorp
Employee
7,850 Views

Did you use PNG images? JPG images will not work. Did you build with CLI 4.1.2 or CLI 5.1.1?

Alternatively, you can add the icons using the intelxdk.config.additions.xml file. See this FAQ entry and this example set of iOS icons (below). In this example set, the pkg directory is inside your www directory:

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

    <!-- iPad Splash Screens -->
    <splash src="pkg/ios/default-portrait~ipad.png" width="768" height="1024"/>
    <splash src="pkg/ios/default-landscape~ipad.png" width="1024" height="768"/>
    <splash src="pkg/ios/default-portrait@2x~ipad.png" width="1536" height="2048"/>
    <splash src="pkg/ios/default-landscape@2x~ipad.png" width="2048" height="1536"/>
    <splash src="pkg/ios/default-portrait~ipad-pro.png" width="2048" height="2732"/>
    <splash src="pkg/ios/default-landscape~ipad-pro.png" width="2732" height="2048"/>
    <!-- iPhone 6 and 6 Plus Splash Screens -->
    <splash src="pkg/ios/default-667h.png" width="750" height="1334"/>
    <splash src="pkg/ios/default-736h.png" width="1242" height="2208"/>
    <splash src="pkg/ios/default-landscape-736h.png" width="2208" height="1242"/>
    <!-- iPhone 5, iPhone 4s, iPhone Retina and iPhone Splash Screens -->
    <splash src="pkg/ios/default~iphone.png" width="320" height="480"/>
    <splash src="pkg/ios/default@2x~iphone.png" width="640" height="960"/>
    <splash src="pkg/ios/default-568h@2x~iphone.png" width="640" height="1136"/>
</platform>

 

View solution in original post

0 Kudos
43 Replies
PaulF_IntelCorp
Employee
913 Views

The Apple icons can have any name, the build system will convert that to the right names. But they must all be PNG files, JPG files no longer work with Cordova.

Sorry, no time to debug, it is still sitting in my queue, we've been extremely busy trying to get this major release out.

0 Kudos
Ganesh_R_Intel
Employee
913 Views

Please reference the FAQ in the best answer. Icons need to be in the png format. Many users have run into an issue because while the image is named as png, they were not in the right binary format.  

This thread is closed but available as a readable historical reference. 
Please start a new thread if you have a specific question and provide a reproducer.

0 Kudos
Reply