本文关键信息
itm - 90706:无效的信息。plist value - CFBundleIcons的值。CFBundleAlternateIcons信息。Plist键无效。
ITMS-90149:此包无效- Info中的CFBundleDocumentTypes键的值。plist必须是一个字典数组,每个字典至少包含CFBundleTypeName键。
应用程序商店连接
亲爱的开发者,
我们确定一个或多个问题最近交付为您的应用程序,“聚句‘“2.0(0)。请修正以下问题,然后再上传。
itm - 90706:无效的信息。plist value - CFBundleIcons的值。CFBundleAlternateIcons信息。Plist键无效。在https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/TP40009249-SW14了解更多。
ITMS-90149:此包无效- Info中的CFBundleDocumentTypes键的值。plist必须是一个字典数组,每个字典至少包含CFBundleTypeName键。
最好的问候,
App Store团队
90706 项目中未使用到多icon管理 在info.plist直接删除 icon files 即可
90149 解决方法如下(验证应用程序时,如何解决此捆绑包无效的错误)
此捆绑包无效.info.plist中CFBundleDocumentTypes键的值必须是字典数组,每个字典至少包含CFBundleTypeName键
在Info.Plist CFBundleDocumentTypes键中,您将<dict/>在其上有一行.删除此<dict/>行,错误将消失.
所以以下内容:
<key>CFBundleDocumentTypes</key>
<array>
<dict/>
</array>
变为:
<key>CFBundleDocumentTypes</key>
<array>
</array>
一切正常.