Flutter:IOS 的丰富通知

问题描述 投票:0回答:1

我添加了通知扩展服务,但 IOS 应用程序未在通知中显示图像。添加通知扩展服务后的错误

我正在尝试使用 firebase 通知处理通知中的图像。

我用于 firebase 发送通知的负载

{
    "notification": {
        "mutable_content": true,
        "title": "title",
        "body": "body"
    },
    "to" : "__token__",
    "data": {
        "image": "https://ilyarm.ru/assets/949163b5edd92aa1ec0379734-697x403.jpg"
    }
}
flutter notifications rich-notifications
1个回答
0
投票

您收到循环错误。

在 Xcode 中,转到您的主要目标(在我的例子中是 Runner),然后选择“构建阶段”选项卡。

将“嵌入式基础扩展”选项移至“精简二进制”选项上方。

应该看起来像这样:

  • 嵌入式基础扩展
  • 精简二进制
  • [CP] 嵌入 Pod 框架
© www.soinside.com 2019 - 2024. All rights reserved.