2014-01-30 56 views
1

在尝试提交我的PhoneGap应用在AppStore我收到以下错误PhoneGap的应用程序提交给AppStore的 - ITMS-9000错误

ERROR ITMS-9000:“您的二进制文件没有为iPhone 5的优化 - 新的iPhone应用程序和应用更新提交靶向iOS 6以上必须支持在iPhone 5 4英寸显示器,并且必须包括与-568h大小改性剂紧接& LT以下发射图像;基名& GT;发射图像的文件名的一部分启动图像必须是PNG文件,位于您包的顶层,或每个.LPROJ文件夹中提供的,如果你本地化您推出的图像。

我甲肝e在我的Phonegap config.xml中指定的以下splash图像

<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" /> 

任何人都可以指出我在做错什么吗?

+0

你可以打开它通过电话间隙时所产生的Xcode项目文件,并检查那里是否指定了正确的启动图像或不 –

+0

检查此http: //stackoverflow.com/questions/18736954/missing-recommended-icon-file-the-bundle-does-not-contain-an-app-icon-for-iph,它包含全新的UI重新quirements – Anand

回答

2

你必须添加适当的闪屏图像支持4.0英寸设备。
命名约定闪屏。
为Default.png非视网膜3.5" 装置。
[email protected]为视网膜3.5" 装置。
[email protected]为视网膜4.0" 装置

相关问题