iOS包无法上传Appstore,提示/IDLFaceSDK有问题
iOS包无法上传Appstore,提示/IDLFaceSDK有问题
信息类别 | 信息内容 |
---|---|
产品分类 | uniapp/App |
PC开发环境 | Windows |
PC版本号 | win10 |
HBuilderX | 正式 |
HBuilderX版本号 | 4.55 |
手机系统 | iOS |
手机系统版本号 | iOS 15 |
手机厂商 | 苹果 |
手机机型 | iphone12 |
页面类型 | vue |
vue版本 | vue3 |
打包方式 | 云端 |
项目创建方式 | HBuilderX |
操作步骤:
- 云打包->传统打包->上传transpoter失败
预期结果:
- 成功
实际结果:
- 失败
bug描述:
Please correct the following issues and upload a new binary to App Store Connect.
- ITMS-90668: Invalid Bundle Executable - The executable file ‘HBuilder.app/Frameworks/IDLFaceSDK.framework/IDLFaceSDK’ contains incomplete bitcode. To compile binaries with complete bitcode, open Xcode and choose Archive in the Product menu.
- Though you are not required to fix the following issues, we wanted to make you aware of them:
- ITMS-90737: Missing Document Configuration - By declaring the CFBundleDocumentTypes key in your app, you’ve indicated that your app is able to open documents. Please set the UISupportsDocumentBrowser key to ‘YES’ if your app uses a UIDocumentBrowserViewController. Otherwise, set the LSSupportsOpeningDocumentsInPlace key in the Info.plist to ‘YES’ (recommended) or ‘NO’ to specify whether the app can open files in place. All document-based apps must include one of these configurations. For more information, visit https://developer.apple.com/document-based-apps/.
- ITMS-90788: Incomplete Document Type Configuration - The CFBundleDocumentTypes dictionary array in the ‘com.xilian.qmq’ Info.plist should contain an LSHandlerRank value for the CFBundleTypeName ‘com.myapp.common-data’ entry. Refer to https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/TP40009249-SW1 for more information on the LSHandlerRank key.
- Apple Developer Relations
- 上传appstore报错 4.36还可以 换成4.55 4.45就不行
5 回复
4.56也不行 裂开了
SOS啊
兄弟们 解决了吗
你好,问一下有IOS企业证书吗?
这个错误主要是由于IDLFaceSDK框架的bitcode不完整导致的。以下是解决方案:
- 对于主要错误(ITMS-90668):
- 在manifest.json中配置"bitcode": false
- 或者在HBuilderX打包时勾选"不包含bitcode"选项
- 对于文档配置相关警告(ITMS-90737/90788):
- 在manifest.json的"ios"节点下添加:
"UISupportsDocumentBrowser": false,
"LSSupportsOpeningDocumentsInPlace": false