我们正在为我们的应用程序使用 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 build是谁做的?
谢谢!