2016-09-08 3 views

Antwort

0

ein Symbol im www Stammordner (zB icon.png) hinzufügen und diese Zeile in Ihrer config.xml-Datei hinzufügen:

<icon src="icon.png" /> 

Es erstellt zu mehreren Symbolen für verschiedene Auflösungen und verschiedene Plattformen empfohlen wird, aber die obige Zeile wird Sie starten.

<icon src="icon.png" /> 
<platform name="ios"> 
    <icon src="res/icon/ios/icon.png" width="57" height="57" /> 
    <icon src="res/icon/ios/[email protected]" width="114" height="114" /> 
    <icon src="res/icon/ios/icon-72.png" width="72" height="72" /> 
    <icon src="res/icon/ios/[email protected]" width="144" height="144" /> 
    <icon src="res/icon/ios/icon-60.png" width="60" height="60" /> 
    <icon src="res/icon/ios/[email protected]" width="120" height="120" /> 
    <icon src="res/icon/ios/[email protected]" width="180" height="180" /> 
    <icon src="res/icon/ios/icon-76.png" width="76" height="76" /> 
    <icon src="res/icon/ios/[email protected]" width="152" height="152" /> 
</platform> 

Diese Pfade sind relativ zum www root:

Zum Beispiel, zur Verfügung gestellt Icons für iOS-Geräte, können Sie so etwas wie hinzufügen.

Verwandte Themen