I am creating an application that is coded with HTML & Javascript and is built into iOS and Android apps through the Phonegap build web service.
When searching the app through Spotlight in iOS, it shows the default Phonegap icon instead of my app icon. I need for it to show my app icon.
I have created icons of different sizes and configured config.xml like so:
<icon src="res/logo.png"/>
<platform name="ios">
<icon src="res/iOS/icons/Icon-App-20x20@1x.png" width="20" height="20" />
<icon src="res/iOS/icons/Icon-App-20x20@2x.png" width="40" height="40" />
<icon src="res/iOS/icons/Icon-App-20x20@3x.png" width="60" height="60" />
<icon src="res/iOS/icons/Icon-App-29x29@1x.png" width="29" height="29" />
<icon src="res/iOS/icons/Icon-App-29x29@2x.png" width="58" height="58" />
<icon src="res/iOS/icons/Icon-App-29x29@3x.png" width="87" height="87" />
<icon src="res/iOS/icons/Icon-App-40x40@1x.png" width="40" height="40" />
<icon src="res/iOS/icons/Icon-App-40x40@2x.png" width="80" height="80" />
<icon src="res/iOS/icons/Icon-App-40x40@3x.png" width="120" height="120" />
<icon src="res/iOS/icons/Icon-App-57x57@1x.png" width="57" height="57" />
<icon src="res/iOS/icons/Icon-App-57x57@2x.png" width="114" height="114" />
<icon src="res/iOS/icons/Icon-App-60x60@1x.png" width="60" height="60" />
<icon src="res/iOS/icons/Icon-App-60x60@2x.png" width="120" height="120" />
<icon src="res/iOS/icons/Icon-App-60x60@3x.png" width="180" height="180" />
<icon src="res/iOS/icons/Icon-App-72x72@1x.png" width="72" height="72" />
<icon src="res/iOS/icons/Icon-App-72x72@2x.png" width="144" height="144" />
<icon src="res/iOS/icons/Icon-App-76x76@1x.png" width="76" height="76" />
<icon src="res/iOS/icons/Icon-App-76x76@2x.png" width="152" height="152" />
<icon src="res/iOS/icons/Icon-App-76x76@3x.png" width="228" height="228" />
</platform>
<icon src="icon.png" />
Then, I have put the corresponding files in the path in src.
Is there anything else I should do that I am missing?