2013-09-16 18 views
2

目前,我嘗試使用的XCode 5.0的iOS分發「無法處理的應用程序的Info.plist」

的應用程序已經在應用商店提交的iOS 7應用應用商店 - 我做了一些固定的iOS 7,並希望現在提交二進制文件。

我收到的消息是 「由於一般錯誤,此時無法處理應用程序Info.plist驗證,請稍後重試」。

首先,我認爲這將是蘋果服務器的一個問題。由於問題現在已經有兩天了,我開始尋找其他類似問題的人。 一些設法通過使用不同的應用程序圖標來解決問題 - 但我發現的主題是一個月前。

但是,我的問題依然存在。

我提供了所有可能格式的所有圖標(57x57,72x72,114x114,144x144,120x120),但仍然沒有成功。

目前我真的很討厭讓生活變得複雜的蘋果。

也許有人有一個想法?

這裏是我的Info.plist文件:

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 
<plist version="1.0"> 
<dict> 
    <key>CFBundleDevelopmentRegion</key> 
    <string>Germany</string> 
    <key>CFBundleDisplayName</key> 
    <string>myAppName</string> 
    <key>CFBundleExecutable</key> 
    <string>${EXECUTABLE_NAME}</string> 
    <key>CFBundleIconFile</key> 
    <string></string> 
    <key>CFBundleIconFiles</key> 
    <array> 
     <string>Icon120x120</string> 
     <string>Icon.png</string> 
     <string>[email protected]</string> 
    </array> 
    <key>CFBundleIdentifier</key> 
    <string>de.xxx.xxx</string> 
    <key>CFBundleInfoDictionaryVersion</key> 
    <string>6.0</string> 
    <key>CFBundleName</key> 
    <string>${PRODUCT_NAME}</string> 
    <key>CFBundlePackageType</key> 
    <string>APPL</string> 
    <key>CFBundleShortVersionString</key> 
    <string>1.7</string> 
    <key>CFBundleSignature</key> 
    <string>????</string> 
    <key>CFBundleVersion</key> 
    <string>1.7</string> 
    <key>LSRequiresIPhoneOS</key> 
    <false/> 
    <key>NSMainNibFile</key> 
    <string>MainWindow</string> 
    <key>UIApplicationExitsOnSuspend</key> 
    <false/> 
    <key>UIRequiredDeviceCapabilities</key> 
    <array> 
     <string>armv6</string> 
    </array> 
    <key>UISupportedInterfaceOrientations</key> 
    <array> 
     <string>UIInterfaceOrientationPortrait</string> 
    </array> 
</dict> 
</plist> 

回答

1

的XCode 5 DP不允許應用程序提交到App Store中。

您應該等待官方的Xcode 5.0版本。

+0

好,感謝信息....並感謝蘋果,我的用戶將無法在iOS7發佈後使用我的應用程序幾天由於審批時間 – user2785024

+0

了這問題? –

0

對我來說是在Info.plist中CFBundleIconFiles關鍵這是導致該問題與驗證。簡單地刪除它,它的工作。

相關問題