i***@chetell.com
i***@chetell.com
  • 发布:2023-05-15 16:40
  • 更新:2023-06-25 17:50
  • 阅读:447

IOS 云打包完成后 transporter 进行交付出现警告型错误"INSendMessagelntent" or "INStartCallintent" in the

分类:uni-app

Missing Info.plist value. Apps with the
com.apple.developer.usernotifications.communication entitlement must specify either "INSendMessagelntent" or "INStartCalllntent" in the value of the NSUserActivityTypes Info.plist key.

请问一下,这个需要怎么解决呢??

2023-05-15 16:40 负责人:无 分享
已邀请:
FullStack

FullStack - 【插件开发】【专治疑难杂症】【ios上架、马甲包、白包、过审、已成功上架过几百个】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=22130】【非诚勿扰】QQ:543610866

使用了SiriKit?

在 manifest.json 配置:NSUserActivityTypes

1***@163.com

1***@163.com

项目根目录创建Info.plist

<?xml version="1.0" encoding="UTF-8"?>  
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">  
<plist version="1.0">  
  <dict>  
    <key>NSUserActivityTypes</key>  
    <array>  
      <string>INSendMessageIntent</string>  
      <string>INStartCallIntent</string>  
    </array>  
  </dict>  
</plist>

要回复问题请先登录注册