2

目前我尝试使用 XCode 5.0 向应用商店提交 iOS 7 应用

该应用程序已经在应用程序商店中 - 我为 iOS 7 做了一些修复,现在想提交二进制文件。

我收到的消息是“由于一般错误,此时无法处理应用程序 Info.plist 验证。请稍后再试”。

首先,我认为这将是苹果服务器的问题。由于问题持续了2天,我开始寻找其他有类似问题的人。有些人设法通过使用不同的应用程序图标解决了这个问题——但我发现的主题是一个月前的。

但是,我的问题仍然存在。

我提供了所有可能格式(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>Icon@2x.png</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>
4

3 回答 3

1

XCode 5 DP 不允许将应用程序提交到 App Store。

您应该等待 XCode 5.0 正式发布。

于 2013-09-16T19:07:37.967 回答
0

You can try to remove armv6 from Architectures in Build Settings, everything will be alright. I also got this trouble for 2 weeks...

Reference : https://discussions.apple.com/thread/5546617

于 2013-11-14T02:28:38.313 回答
0

对我来说,是 Info.plist 中的 CFBundleIconFiles 键导致了验证问题。只需将其删除即可。

于 2013-11-27T23:24:33.890 回答