我是新來的ios開發,並試圖部署到應用商店時卡住了。我每次都收到相同的信息。手機差距 - appstore拒絕我的部署
我所做的是一個非常簡單的JavaScript應用程序,它是用phonegap構建的。 Phonegap編譯它,我試圖設置config.xml文件,並具有以下啓動畫面。
<gap:splash src="splash/ios/Default.png" width="320" height="480" />
<gap:splash src="splash/ios/Default_at_2x.png" width="640" height="960" />
<gap:splash src="splash/ios/Default_iphone5.png" width="640" height="1136" />
<gap:splash src="splash/ios/Default-Landscape.png" width="1024" height="768" />
<gap:splash src="splash/ios/Default-Portrait.png" width="768" height="1024" />
<gap:splash src="splash/ios/Default-Landscape_at_2x.png" width="2048" height="1496" />
<gap:splash src="splash/ios/Default-Portrait_at_2x.png" width="1536" height="2008" />
而且iconsetup這樣
<icon src="res/icon/ios/icon-57.png" gap:platform="ios" width="57" height="57" />
<icon src="res/icon/ios/icon-72.png" gap:platform="ios" width="72" height="72" />
<icon src="res/icon/ios/icon-57-2x.png" gap:platform="ios" width="114" height="114" />
<icon src="res/icon/ios/icon-72-2x.png" gap:platform="ios" width="144" height="144" />
的效應初探我從蘋果商店裏得到的是如下:
尊敬的開發商,
我們已經發現了一個或多個問題與您的最近交付「AutoAkademiet」。要處理您的投遞,必須糾正以下問題:
iPhone 5優化要求 - 您的二進制文件未針對iPhone 5進行優化。針對iOS 6及更高版本提交的新iPhone應用程序和應用程序更新必須支持4英寸顯示屏iPhone 5,並且必須在啓動圖像的文件名部分緊跟着一個包含-568h大小修改器的啓動圖像。啓動圖像必須是PNG文件,並位於軟件包的頂層,或者如果您本地化啓動圖像,則在每個.lproj文件夾中提供圖像。通過查看iOS人機界面指南和iOS應用程序編程指南,瞭解有關iPhone 5支持和應用程序啓動圖像的更多信息。
一旦這些問題得到解決,進入版本詳細信息頁面並點擊「準備上傳二進制文件」。繼續完成提交過程,直到應用狀態爲「等待上傳」。然後您可以提供更正的二進制文件。
問候,
的App Store的團隊
任何人都知道我做了什麼錯在這裏?我怎樣才能用電話解決這個小問題?
我認爲他們想要你的飛濺/ IOS/Default_iphone5.png有-568h這樣splash/ios/[email protected] – Noogen
您也可以嘗試遵循這個命名約定,以防止進一步拒絕基於文件名:http://www.ios-developer。網絡/ iphone-ipad-programmer/icons_and_graphics /默認圖像 – Noogen