我在使用xamarin ios(https://developer.xamarin.com/guides/ios/platform_features/user-notifications/enhanced-user-notifications/)的服务扩展时遇到问题。
我执行了以下步骤:
为xamarin表单创建了ios应用程序(bundle id:com.myprogram.test)
创建服务扩展项目(bundle id:com.myprogram.testnotificationservice)
从第一步开始配置app id以接收推送通知(对于步骤2中的app id,此功能已被禁用)
从主要文件引用扩展项目(在csproj文件中获得以下字符串:
<ProjectReference Include="..\MyServiceExtension.csproj">
<Project>{....}</Project>
<Name>MyServiceExtension</Name>
<IsAppExtension>true</IsAppExtension>
<IsWatchApp>false</IsWatchApp>
</ProjectReference>
之后我将app部署到设备并尝试发送测试推送通知(mutable-content设置为1)
但是通知扩展无法执行:-(任何想法,我必须检查?
提前致谢