Skip to content

Instantly share code, notes, and snippets.

@anonrig
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save anonrig/f8865ee3066404f0f762 to your computer and use it in GitHub Desktop.

Select an option

Save anonrig/f8865ee3066404f0f762 to your computer and use it in GitHub Desktop.
Cordova config.xml for Android and iOS icons
<platform name="android">
<icon src="www/img/Android/icon_ldpi.png" density="ldpi" />
<icon src="www/img/Android/icon_mdpi.png" density="mdpi" />
<icon src="www/img/Android/icon_hdpi.png" density="hdpi" />
<icon src="www/img/Android/icon_xhdpi.png" density="xhdpi" />
<icon src="www/img/Android/icon_xxhdpi.png" density="xxhdpi" />
<icon src="www/img/Android/icon_xxxhdpi.png" density="xxxhdpi" />
</platform>
<platform name="ios">
<icon src="www/img/iOS/Icon-40.png" width="40" height="40" />
<icon src="www/img/iOS/Icon-40@2x.png" width="80" height="80" />
<icon src="www/img/iOS/Icon-40@3x.png" width="120" height="120" />
<icon src="www/img/iOS/Icon-60.png" width="60" height="60" />
<icon src="www/img/iOS/Icon-60@2x.png" width="120" height="120" />
<icon src="www/img/iOS/Icon-60@3x.png" width="180" height="180" />
<icon src="www/img/iOS/Icon-72.png" width="72" height="72" />
<icon src="www/img/iOS/Icon-72@2x.png" width="144" height="144" />
<icon src="www/img/iOS/Icon-76.png" width="76" height="76" />
<icon src="www/img/iOS/Icon-76@2x.png" width="152" height="152" />
<icon src="www/img/iOS/Icon-Small-50.png" width="50" height="50" />
<icon src="www/img/iOS/Icon-Small-50@2x.png" width="100" height="100" />
<icon src="www/img/iOS/Icon-Small.png" width="29" height="29" />
<icon src="www/img/iOS/Icon-Small@2x.png" width="58" height="58" />
<icon src="www/img/iOS/Icon-Small@3x.png" width="87" height="87" />
<icon src="www/img/iOS/Icon.png" width="57" height="57" />
<icon src="www/img/iOS/Icon@2x.png" width="114" height="114" />
</platform>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment