1

アプリに phonegap を使用しており、conig.xml にスプラッシュ スクリーンを追加していますが、ファイルの名前に関する IOS および Phonegap のドキュメントを読んだ後、少し混乱しています。

Phonegap のドキュメントには次のように書かれています。

<gap:splash src="splash/ios/Default.png" gap:platform="ios" width="320" height="480" /><gap:splash src="splash/ios/Default_at_2x.png" gap:platform="ios" width="640" height="960"/>
<gap:splash src="splash/ios/Default_iphone5.png" gap:platform="ios" width="640" height="1136" />
<gap:splash src="splash/ios/Default-Landscape.png" gap:platform="ios" width="1024" height="748" />
<gap:splash src="splash/ios/Default-Portrait.png" gap:platform="ios" width="768" height="1004" />

<!-- retina iPad support: PhoneGap 2.5.0+ only -->
<gap:splash src="splash/ios/Default-Landscape_at_2x.png" gap:platform="ios" width="2048" height="1496" />
<gap:splash src="splash/ios/Default-Portrait_at_2x.png" gap:platform="ios" width="1536" height="2008" />

また、IOS のドキュメントには次のように記載されています。

<basename><usage_specific_modifiers><scale_modifier><device_modifier>.png

Default-568h@2x~iphone.png (640x1136 ピクセル) Default-Landscape@2x~ipad.png (2048x1496 ピクセル) Default-Landscape~ipad.png (1024x748 ピクセル) Default-Portrait@2x~ipad.png (1536x2008 ピクセル) Default-Portrait~ipad.png (768x1004 ピクセル) Default@2x~iphone.png (640x960 ピクセル) Default~iphone.png (320x480 ピクセル)

IOS ドキュメントが言うように config.xml の名前を変更する必要がありますか、それとも phonegap ビルドは誰ですか?

ありがとう!

4

1 に答える 1