Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/98.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios 警告ITMS-90788:“;“文档类型配置不完整”;_Ios_Xcode_App Store Connect - Fatal编程技术网

Ios 警告ITMS-90788:“;“文档类型配置不完整”;

Ios 警告ITMS-90788:“;“文档类型配置不完整”;,ios,xcode,app-store-connect,Ios,Xcode,App Store Connect,我在尝试将应用程序上载到应用商店时遇到此错误。我不知道这是什么原因 警告ITMS-90788:“文档类型配置不完整。'Bundle ID'Info.plist中的CbundleDocumentTypes字典数组应包含CbundleTypeName'mkDirectionRequest'项的LSHandlerRank值。有关LSHandlerRank键的更多信息,请参阅。” 有人能为我提供一个解决这个问题的方法吗?以下是info.plist中的lshandlerank键的外观 或(打开info

我在尝试将应用程序上载到应用商店时遇到此错误。我不知道这是什么原因

警告ITMS-90788:“文档类型配置不完整。'Bundle ID'Info.plist中的CbundleDocumentTypes字典数组应包含CbundleTypeName'mkDirectionRequest'项的LSHandlerRank值。有关LSHandlerRank键的更多信息,请参阅。”


有人能为我提供一个解决这个问题的方法吗?

以下是info.plist中的lshandlerank键的外观

(打开info.plist作为“源代码”和添加)

CbundleDocumentTypes

我从苹果得到如下警告:

我们发现您的应用程序最近的交付存在一个或多个问题。您的交付已成功,但您可能希望在下一次交付中更正以下问题:

ITMS-90788:文档类型配置不完整-“XXXXXXX”Info.plist中的CbundleDocumentTypes字典数组应包含CbundleTypeName“mkDirectionRequest”条目的LSHandlerRank值

因此,在plist中输入以下内容修复了问题-

<key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeName</key>
            <string>MKDirectionsRequest</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>com.apple.maps.directionsrequest</string>
            </array>
        </dict>
    </array>
    <key>CFBundleExecutable</key>
CbundleDocumentTypes
CbundleTypeName
MKDirectionsRequest
伊斯汉德兰克
候补
lsItemContentType
com.apple.maps.directionsrequest
Cbundlexecutable

您的Info.plist文件中有哪些文档类型?错误看起来不言自明,您需要帮助的部分是什么?@m1sh0我的plist文件中没有任何文档类型的内容。它是空的。@Scriptable我需要关于如何解决这个问题的帮助。你能添加你的info plist文件吗?你也用豆荚吗?如果您有一些外部库,如何添加它们?
<key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeName</key>
            <string>MKDirectionsRequest</string>
            <key>LSHandlerRank</key>
            <string>Alternate</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>com.apple.maps.directionsrequest</string>
            </array>
        </dict>
    </array>
    <key>CFBundleExecutable</key>