Software Archive
Read-only legacy content
17061 Discussions

App icon with default Cordova Icon in Cordova IOS build

Ashok_k_
Beginner
440 Views

Hi Guys,

I'm getting default  Cordova App icon in IOS build. Here my intelxdk.config.additions.xml file(using IOS 8.3 4s),

<platform name="ios">
    <!-- iOS 7.0+ -->
        <!-- iPhone / iPod Touch  -->
            <icon src="/app/images/icon-60.png" width="60" height="60" />
            <icon src="/app/images/120x120.png" width="120" height="120" />
     
    <!-- iOS 6.1 -->
        <!-- Spotlight Icon -->
            <icon src="/app/images/40x40.png" width="40" height="40" />
            <icon src="/app/images/80x80.png" width="80" height="80" />
       <!-- iPhone / iPod Touch -->
            <icon src="/app/images/57x57.png" width="57" height="57" />
            <icon src="/app/images/114x114.png" width="114" height="114" />
      
        <!-- iPhone Spotlight and Settings Icon -->
            <icon src="/app/images/29x29.png" width="29" height="29" />
            <icon src="/app/images/58x58.png" width="58" height="58" />
      
</platform>
 

but same in android build, I can get the Icon with what I'm setting in configuration,

<icon platform="android" src="app/images/36X36.png" density="ldpi" width="36" height="36"/>
<icon platform="android" src="app/images/72x72.png" density="hdpi" width="72" height="72"/>

 

 

0 Kudos
2 Replies
John_H_Intel2
Employee
440 Views

Are you specifying the icons/splash screens in the Project settings section of the XDK?

0 Kudos
Ashok_k_
Beginner
440 Views

Thanks John. Now its working. I have set the Icon and splash screen via project tab.

0 Kudos
Reply