Reputation: 107
I am trying to make a Cordova application inside Visual Studio 2013 Professional. When I add a <icon>
tag to my config.xml as well as a <splash>
tag, the icon does not actually show up when I run my app.
My icon image is .png format and 128x128.
Here is the relevant section in my config.xml:
<icon src="res/icon.png"/>
<splash src="images/about.jpg"/>
Can anyone help me? I can post more code if that is necessary.
Upvotes: 3
Views: 6839
Reputation: 866
For Visual studio
Step 1. Install Splash Screen Plugin from config.xml
Step 2. Change images for splash screens (The res\screens\platform subfolder contains splash screens for each platform).
Step 3. Run Project on Device.
Upvotes: 0
Reputation: 1
You can't, Visual Studio Cordova will not, without adding a 3rd party hook which requires advanced configuration, allow you to change them.
Upvotes: 0