0

アプリを App Store に公開しようとすると、次のようなエラーが表示されます。

このバンドルは無効です。Info.plist の UIRequiredDeviceCapabilities キーに不明なデバイス機能の値が指定されています。UIRequiredDeviceCapabilities の値が、情報プロパティ リストのキー リファレンスで説明されている有効な値を含む配列またはディクショナリであることを確認してください。

誰かがこれを修正するのを手伝ってくれますか?

Plist は次のようになります。

http://j.mp/V2B8lk

リスト:

    <?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>en</string>
    <key>CFBundleDisplayName</key>
    <string>AppName</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>CFBundleIconFiles</key>
    <array>
        <string>114.png</string>
        <string>icon.png</string>
    </array>
    <key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string>114.png</string>
                <string>icon.png</string>
            </array>
            <key>UIPrerenderedIcon</key>
            <true/>
        </dict>
    </dict>
    <key>CFBundleIdentifier</key>
    <string>company.appname</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.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UIPrerenderedIcon</key>
    <true/>
    <key>UIRequiredDeviceCapabilities</key>
    <false/>
    <key>UIStatusBarTintParameters</key>
    <dict>
        <key>UINavigationBar</key>
        <dict>
            <key>Style</key>
            <string>UIBarStyleDefault</string>
            <key>Translucent</key>
            <false/>
        </dict>
    </dict>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
    </array>
</dict>
</plist>
4

1 に答える 1

1

Required device capabilitiesBooleanであってはなりません。配列または辞書であるはずです。

plistエディターで修正できるかどうかわかりません。そうでない場合は、ファイルをテキスト エディターで開き、次のように変更できます。

<key>UIRequiredDeviceCapabilities</key>
<array></array>

アップデート

必要なデバイス機能を使用しない場合は、エントリを削除することをお勧めします。

于 2012-11-28T14:50:32.690 に答える