Uniapp打包发布App Store时(90894)错误
Missing Info.plist value. Apps with the com.apple.developer.usernotifications.communication entitlement must specify either “INSendMessageIntent” or “INStartCallIntent” in the value of the NSUserActivityTypes Info.plist key. (90894)
解决:
这个警告是苹果在审核iOS应用时发现了使用用户通知和通讯相关的权限(com.apple.developer.usernotifications.communication
)。这个权限通常与使用 SiriKit 相关,特别是当你的应用需要处理发送消息或开始通话的请求时。
错误提示,如果您的应用包含了com.apple.developer.usernotifications.communication
权限,那么必须在Info.plist文件中通过NSUserActivityTypes
键指定至少一个SiriKit支持的Intent类型。具体来说,需要包含"INSendMessageIntent"
或"INStartCallIntent"
。
可以直接在应用项目中配置 iOS 平台的 Info.plist
和资源文件(Bundle Resources)。
创建Info.plist文件,