私は、HTML & Javascriptでコーディングされ、PhonegapビルドWebサービスを通じてiOSとAndroidアプリに組み込まれているアプリケーションを作成しています。Phonegap AppのSpotlightにアイコンが表示されるように設定するにはどうすればいいですか?
iOSのSpotlightでアプリを検索すると、アプリのアイコンの代わりにデフォルトのPhonegapアイコンが表示されます。私はそれが私のアプリのアイコンを表示する必要があります。
私はそうのように、異なるサイズのアイコンと設定さconfig.xmlが作成されました:その後
<icon src="res/logo.png"/>
<platform name="ios">
<icon src="res/iOS/icons/[email protected]" width="20" height="20" />
<icon src="res/iOS/icons/[email protected]" width="40" height="40" />
<icon src="res/iOS/icons/[email protected]" width="60" height="60" />
<icon src="res/iOS/icons/[email protected]" width="29" height="29" />
<icon src="res/iOS/icons/[email protected]" width="58" height="58" />
<icon src="res/iOS/icons/[email protected]" width="87" height="87" />
<icon src="res/iOS/icons/[email protected]" width="40" height="40" />
<icon src="res/iOS/icons/[email protected]" width="80" height="80" />
<icon src="res/iOS/icons/[email protected]" width="120" height="120" />
<icon src="res/iOS/icons/[email protected]" width="57" height="57" />
<icon src="res/iOS/icons/[email protected]" width="114" height="114" />
<icon src="res/iOS/icons/Icon-App-60[email protected]" width="60" height="60" />
<icon src="res/iOS/icons/[email protected]" width="120" height="120" />
<icon src="res/iOS/icons/[email protected]" width="180" height="180" />
<icon src="res/iOS/icons/[email protected]" width="72" height="72" />
<icon src="res/iOS/icons/[email protected]" width="144" height="144" />
<icon src="res/iOS/icons/[email protected]" width="76" height="76" />
<icon src="res/iOS/icons/[email protected]" width="152" height="152" />
<icon src="res/iOS/icons/[email protected]" width="228" height="228" />
</platform>
<icon src="icon.png" />
、私はSRCでのパスに対応するファイルを入れています。
私は行方不明にするべきことがありますか?
Androidのアイコンの1つが誤って作成されているとの通知を受けて、このツールを少し編集しました。それは正常に動作するはずです。私の答えがあなたの質問に答えるなら、それを受け入れてください。ありがとう –