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.
请问一下,这个需要怎么解决呢??
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.
请问一下,这个需要怎么解决呢??
FullStack - 【插件开发】【专治疑难杂症】【ios上架、马甲包、白包、过审、已成功上架过几百个】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=22130】【非诚勿扰】QQ:543610866
使用了SiriKit?
在 manifest.json 配置:NSUserActivityTypes
项目根目录创建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>