I’ve been working with Phonegap lately.. This is a note to my future self about icons and splash screen
- The
config.xml
should be in thewww
folder - You should add a
icon.png
andsplash.png
in the same folder as theconfig.xml
Example
<icon src="res/icon/android/mdpi.png" gap:platform="android" gap:qualifier="mdpi" />
<icon src="res/icon/android/hdpi.png" gap:platform="android" gap:qualifier="hdpi" />
<icon src="res/icon/android/xhdpi.png" gap:platform="android" gap:qualifier="xhdpi" />
<icon src="icon.png" gap:role="default" />
<!-- Define app splash screen for each platform. -->
<gap:splash src="splash.png" />
Leave a Reply