【发布时间】:2012-01-13 12:16:59
【问题描述】:
可能重复:
Unable to process application info.plist validation at this time due to a general error (1095)
我收到了错误
Unable to process application Info.plist validation at this time due to a general error.
我最初认为这是 Apple 服务器的问题,但我可以验证我正在开发的其他应用程序是否正常。
我找到了this 的问题,但是我已经在使用 XCode 的存档和上传实用程序。我真的需要上传这个应用程序,为什么验证失败,但运行良好?
编辑:
这是我的 plist xml
<?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>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleIdentifier</key>
<string>magichour.GIM-Conversion</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>UIPrerenderedIcon</key>
<false/>
<key>CFBundleIconFiles</key>
<array>
<string>Handbook_icon_57.png</string>
<string>Handbook_icon_114.png</string>
</array>
</dict>
</dict>
<key>CFBundleVersion</key>
<string>1.0.1</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>CFBundleIconFiles</key>
<array>
<string>Handbook_icon_57.png</string>
<string>Handbook_icon_114.png</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
</dict>
</plist>
【问题讨论】:
-
你在 Lion 上使用过最新的 Xcode (4.2.1) 吗?我们在使用 SnowLeopard 和一些旧版本的 Xcode 时遇到了奇怪的上传问题。
-
另外,在此处发布您的 plist 文件的 XML。
-
我在雪豹上使用 xcode 4.2,我已将 xml 添加到问题中
-
你有什么想法吗?我仍然坚持这一点
-
重启 OS 和 Xcode 3 次。它对我有用。
标签: ios validation submit