1

Adobe AIR アプリ (Apple App Store で 1 年以上公開されている) の場合、Application Loader を使用して更新を送信しようとしていますが、次のエラーが発生します。

エラー ITMS-9000: 「無効なコード署名です。実行可能ファイル 'Payload/XXX.app/XXX' は、プロビジョニング プロファイルに含まれる証明書で署名する必要があります。」SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage) で

アプリケーションローダーのスクリーンショット

このアプリは、Flash Builder 4.7、Apache Flex 4.11.0、および AIR 4.0 で作成されています。

Apache Flex インストーラ

アプリは私のテスト デバイス (iPhone 5c) で問題なくコンパイルおよび実行されます。

Application Loader によって拒否されるのはなぜですか?

アイコンやスプラッシュ画像の欠落など、些細なことかもしれません...

もちろん、私は明白なことを何度か試み、新しい証明書を取り消し/作成し、App Store 用の新しい配布プロビジョニング プロファイルを作成しました。

以下は、私の XXX-app.xml からの抜粋です。

<autoOrients>true</autoOrients>
<fullScreen>true</fullScreen>
<visible>true</visible>
<softKeyboardBehavior>none</softKeyboardBehavior>

<icon>
        <image16x16>assets/icons/icon-16x16.png</image16x16>
        <image29x29>assets/icons/icon-29x29.png</image29x29>
        <image32x32>assets/icons/icon-32x32.png</image32x32>
        <image36x36>assets/icons/icon-36x36.png</image36x36>
        <image48x48>assets/icons/icon-48x48.png</image48x48>
        <image57x57>assets/icons/icon-57x57.png</image57x57>
        <image72x72>assets/icons/icon-72x72.png</image72x72>
        <image114x114>assets/icons/icon-114x114.png</image114x114>
        <image128x128>assets/icons/icon-128x128.png</image128x128>
        <image512x512>assets/icons/icon-512x512.png</image512x512>

        <image50x50>assets/icons/icon-50x50.png</image50x50>
        <image58x58>assets/icons/icon-58x58.png</image58x58>
        <image76x76>assets/icons/icon-76x76.png</image76x76>
        <image100x100>assets/icons/icon-100x100.png</image100x100>
        <image120x120>assets/icons/icon-120x120.png</image120x120>
        <image144x144>assets/icons/icon-144x144.png</image144x144>
        <image152x152>assets/icons/icon-152x152.png</image152x152>
        <image1024x1024>assets/icons/icon-1024x1024.png</image1024x1024>
</icon>

<iPhone>
<InfoAdditions><![CDATA[
                <key>UIDeviceFamily</key>
                <array>
                        <string>1</string>
                        <string>2</string>
                </array>
                <key>UIViewControllerBasedStatusBarAppearance</key>
                <false/>
        ]]></InfoAdditions>
<requestedDisplayResolution>high</requestedDisplayResolution>
</iPhone>

<extensions>
        <extensionID>com.adobe.Vibration</extensionID>
        <extensionID>com.adobe.ane.gameCenter</extensionID>
    </extensions>
</application>

.ipa ファイルに含まれるスプラッシュ イメージは次のとおりです。

Default-568h@2x.png
Default-Landscape.png
Default-Landscape@2x.png
Default-Portrait.png
Default-Portrait@2x.png
Default.png
Default@2x.png
4

1 に答える 1

2

AIR 4.0 ベータ版 (インストーラーの AIR メニューから選択可能) を使用する必要があります。

バグ 3686074: [APPLE][XCODE5] App Store に送信された新しいアプリとアプリの更新は、2 月 1 日の最新バージョンの Xcode 5 でビルドする必要があります

于 2014-02-26T01:42:30.817 に答える