2

現在、XCode 5.0を使用してiOS 7アプリをアプリストアに送信しようとしています

アプリは既にアプリ ストアにあります。iOS 7 用にいくつかの修正を行い、今すぐバイナリを送信したいと考えています。

表示されるメッセージは、「一般的なエラーのため、現時点ではアプリケーション Info.plist の検証を処理できません。後でもう一度やり直してください」です。

最初は、Apple のサーバーに問題があるのではないかと考えました。この問題は現在 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

Build Settings の Architectures から armv6 を削除してみてください。すべて問題ありません。私も2週間このトラブルに見舞われました...

参考:https ://discussions.apple.com/thread/5546617

于 2013-11-14T02:28:38.313 に答える