问题描述
在试图提交我的PhoneGap应用在AppStore我碰到下面的错误
On attempting to submit my Phonegap app to the Appstore I get the following error
错误ITMS-9000:您的二进制文件是不是针对iPhone 5进行了优化 - 新的iPhone应用程序,并提交应用程序更新针对iOS 6以上必须支持iPhone 5的4英寸显示屏,并且必须包括与-568h发射图像大小修改紧随&放大器; LT;基本名称和放大器; GT;启动图像的文件名部分启动图片必须为PNG文件,位于您包的顶层,或在每个提供,如果您本地化您推出的图像.LPROJ文件夹
ERROR ITMS-9000: "Your binary is not optimized for iPhone 5 - New iPhone apps and app updates submitted targeting iOS 6 and above must support the 4-inch display on iPhone 5 and must include a launch image with the -568h size modifier immediately following the <basename> portion of the launch image's filename. Launch images must be PNG files and located at the top-level of your bundle, or provided within each .lproj folder if you localize your launch images.
我在PhoneGap的config.xml中指定了以下飞溅的图像
I have the following splash images specified in my Phonegap config.xml
<gap:splash src="images/splash320x480.png" width="320" height="480" />
<gap:splash src="images/splash640x960.png" width="640" height="960" />
<gap:splash src="images/splash1024x768.png" width="1024" height="768" />
<gap:splash src="images/splash768x1024.png" width="768" height="1024" />
<gap:splash src="images/splash1024x748.png" width="1024" height="748" />
<gap:splash src="images/splash1024x748.png" width="1024" height="748" />
<gap:splash src="images/splash1496x2048.png" width="1496" height="2048" />
<gap:splash src="images/splash768x1004.png" width="768" height="1004" />
<gap:splash src="images/splash1536x2008.png" width="1536" height="2008" />p
<gap:splash src="images/splash2048x1536.png" width="2048" height="1536" />
<gap:splash src="images/splash1536x2048.png" width="1536" height="2048" />
<gap:splash src="images/splash_retina_640x1136.png" width="640" height="1136" />
<gap:splash src="images/splash_retina_640x960.png" width="640" height="960" />
<gap:splash src="images/splash640x1136.png" width="640" height="1136" />
任何人都可以点我的我在做什么的方向错了吗?
Can anyone point me in the direction of what I'm doing wrong?
推荐答案
您必须添加适当的闪屏图像支持4.0英寸设备。
命名约定闪屏。
为Default.png非视网膜3.5装置。
[email protected]~~V视网膜3.5装置。
[email protected]~~V视网膜4.0装置。
you have to add proper splash screen images for supporting 4.0 inch devices.
Naming convention for splash screen.
Default.png for non-retina 3.5" devices.
[email protected] for retina 3.5" devices.
[email protected] for retina 4.0" devices.
这篇关于PhoneGap的应用程序提交给AppStore的 - ITMS-9000错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!