Reputation: 790
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.
Upvotes: 1
Views: 1143
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
Reputation: 1280
Hi you need to set image in below locations. There will be default folder created with default cordova logos and splashscreen.
Upvotes: 0