iOS FirebaseCloudMessaging通知无法在Debug/Test Flight或Release中运行 [英] iOS FirebaseCloudMessaging Notifications not working in Debug / Test Flight nor Release

查看:155
本文介绍了iOS FirebaseCloudMessaging通知无法在Debug/Test Flight或Release中运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的通知可以在android中正常运行,但是在iOS中,我无法弄清楚问题出在哪里.

I have the notifications working in android without any issue, but in iOS I can't figure out what seems to be the problem.

  • 我已经创建了APN文件并上传到Firebase iOS配置
  • 两个团队的ID&应用程序ID正确-再次检查
  • 推送通知"在Apple Developer& amp;中均处于活动状态. Xcode
  • 当应用启动时,iOS发出了允许通知的请求

我正在使用 firebase_messaging 插件,并在我的main.dart中放入:

I'm using firebase_messaging plugin and in my main.dart I put:

@override
void initState() {
    super.initState();

    if (Platform.isIOS)
      this.fbaseMessaging.requestNotificationPermissions(
            IosNotificationSettings(sound: true, badge: true, alert: true),
      );
}

当用户登录时,我获取令牌:

And when the user logs in I grab the token:

fbaseMessaging.getToken().then((token) {
    // Updates the user account
});

我已经在Xcode模拟器,TestFlight的iOS设备以及已发布的版本中进行了测试,但是我从未收到任何通知,而且也不知道如何调试问题所在.

I have tested in Xcode Simulator, in a iOS device in TestFlight as well as in a released version and I never receive any notification and I have no clue how to debug where is the problem.

遵循了一些教程,例如:

Followed several tutorials like:

  1. https://medium.com /flutterpub/enabling-firebase-cloud-messaging-push-notifications-with-flutter-39b08f2ed723
  2. https://www.youtube.com/watch?time_continue=450& ; v = PzjxZsz3Tjk
  1. https://medium.com/flutterpub/enabling-firebase-cloud-messaging-push-notifications-with-flutter-39b08f2ed723
  2. https://www.youtube.com/watch?time_continue=450&v=PzjxZsz3Tjk

推荐答案

已解决.

我要做的就是更改此内容

All I had to do was changing this:

if (Platform.isIOS)
{
  this.fbaseMessaging.requestNotificationPermissions(
        IosNotificationSettings(sound: true, badge: true, alert: true),
  );
}

对此:

if (Platform.isIOS)
{
  this.fbaseMessaging.configure();
  this.fbaseMessaging.requestNotificationPermissions(
        IosNotificationSettings(sound: true, badge: true, alert: true),
  );
}

即使我不使用onResumeonLaunch和& onMessage configure方法必须被调用.

Seems like even though I don't use the onResume, onLaunch & onMessage the configure method has to be called.

这篇关于iOS FirebaseCloudMessaging通知无法在Debug/Test Flight或Release中运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆