Quintonn
Quintonn

Reputation: 790

How to set app icon and splash screen for IOS using visual studio tools for apache cordova?

I am building an Apache Cordova app using Visual Studio 2013 with the tools for Apache Cordova extension. I cannot change the icon that appears in the Apple Store or in iTunesConnect. I am able to change the icon for android and google play store however. I have changed the files in res/screens/ios and res/icons/ios accordingly, but it doesn't seem to be updating when I create a new IPA and upload it. This is the icon I am getting at the moment and this image does not exist anywhere in my project directory structure.

Default apache icon

Upvotes: 1

Views: 1143

Answers (3)

Charitha
Charitha

Reputation: 127

enter image description here

note icons must match the size (height and width).

Upvotes: 0

Charitha
Charitha

Reputation: 127

Please notice that the value of the "src" attribute is relative to the project directory and not to the www directory. You can rename the source image whatever you like. The internal name in the app are determined by Cordova.

<platform name="ios">
    <!-- iOS 8.0+ -->
    <!-- iPhone 6 Plus  -->
    <icon src="res/ios/[email protected]" width="180" height="180" />
    <!-- other icons -->
 </platform>

Upvotes: 4

Deep Mehta
Deep Mehta

Reputation: 1280

Hi you need to set image in below locations. There will be default folder created with default cordova logos and splashscreen. enter image description here

Upvotes: 0

Related Questions