在iTunes连接

时间:2017-06-17 18:13:15

标签: ios in-app-purchase itunesconnect application-loader

我正在开发用户购买时从iTunes连接下载内容的项目。但我无法使用应用程序加载器在iTunes上上传产品内容。我在上传期间收到以下错误

错误:错误ITMS-4000:“程序包不能包含两个名为'mzl.kzekbupn.png'的文件,但大小或校验和不同。”在Software / SoftwareMetadata / SoftwareInAppPurchase

enter image description here

1 个答案:

答案 0 :(得分:3)

哈哈!

我明白了!

所以,我收到了完全相同的消息,除了我的抱怨" screenshot.jpg"。

我有多个我上传的应用内购买,以及" screenshot.jpg"是评论的屏幕截图:在"信息" App Loader的In-App Purchases部分的标签。它某处必定已经腐败或其他什么。

App Loader会创建一个包含所有应用程序内购买的xml文件(请参见下文),如果文件的校验和出现多次错误,则会产生此错误。即使我已经停止使用" screenshot.jpg"在创建xml文件时仍然会引用它。

所以,我的解决方案是在应用程序的所有购买中发布相同的屏幕截图。 App Loader

因此,在完成我的所有应用程序内购买并添加新屏幕截图后,我能够推动它。

可能有一种更优雅的方式来访问xml文件,但我发布了对我有用的内容。

祝你好运!

            <in_app_purchase>
                <locales>
                    <locale name="en-US">
                        <title>Shakespeare: Antony and Cleopatra</title>
                        <description>A Shakespeare classic.</description>
                    </locale>
                </locales>
                <review_screenshot>
                    <file_name>screenshot.jpg</file_name>
                    <size>74368</size>
                    <checksum type="md5">d41d8cd98f00b204e9800998ecf8427e</checksum>
                </review_screenshot>
                <read_only_info>
                    <read_only_value key="iap-status">Ready to Submit</read_only_value>
                </read_only_info>
                <product_id>scenerunner.scenerunner.antony_and_cleopatra</product_id>
                <reference_name>Shakespeare: Antony and Cleopatra</reference_name>
                <type>non-consumable</type>
                <products>
                    <product>
                        <cleared_for_sale>true</cleared_for_sale>
                        <intervals>
                            <interval>
                                <start_date>2017-06-22</start_date>
                                <wholesale_price_tier>3</wholesale_price_tier>
                            </interval>
                        </intervals>
                    </product>
                </products>
                <has_hosted_content>true</has_hosted_content>
                <software_assets>
                    <asset type="in-app-purchase-content">
                        <data_file>
                            <file_name>Antony_and_Cleopatra.pkg</file_name>
                            <size>78782</size>
                            <checksum type="md5">44c282b4fe09115b7d8ed0f6415a215a</checksum>
                        </data_file>
                    </asset>
                </software_assets>
            </in_app_purchase>