I read a topic here about changing the icon for an Android App developed with PhoneGap. I have put the following my in config.xml within Dreamweaver CS6 and then used PhoneGap service to export the app:
<name>Suck My Trend</name>
<description>
Keep Track of the Latest Trends on Suck My Trend with our new App.
</description>
<author href="https://suckmytrend.com" email="ash@suckmytrend.com">
Ashley Pearson
</author>
<gap:splash src="splash.png" />
<icon src="icon.png" />
<icon src="images/72-icon.png" width="72" height="72" />
<icon src="images/48-icon.png" width="48" height="48" />
<icon src="images/36-icon.png" width="36" height="36" />
</widget>
However, the app's icon being shown is still the default PhoneGap one. I am not sure where I am going wrong, also the Splash Screen didn't come up, is there something else I am supposed to add?
The App works fine, it's just these little settings I haven't been able to get my head around.
Ash