I am using cordova for native packaging. Questions regarding below config.xml
- What is res/android/ and Where this path exist of i need to create ?
- Can we give any xyz.png instead of instead of xhdpi.png , if yes then where to keep those *.png(splash screen icons)
- oes all this override icon and startup image given in app.js (sencha generated default app.js)?
- How to give app icon instead of using default cordova icon ?
<platform name="android">
<icon src="res/android/ldpi.png" density="ldpi" />
<icon src="res/android/mdpi.png" density="mdpi" />
<icon src="res/android/hdpi.png" density="hdpi" />
<icon src="res/android/xhdpi.png" density="xhdpi" />
</platform>