<bdo id='7FDW9'></bdo><ul id='7FDW9'></ul>

  • <tfoot id='7FDW9'></tfoot>

    <small id='7FDW9'></small><noframes id='7FDW9'>

    <i id='7FDW9'><tr id='7FDW9'><dt id='7FDW9'><q id='7FDW9'><span id='7FDW9'><b id='7FDW9'><form id='7FDW9'><ins id='7FDW9'></ins><ul id='7FDW9'></ul><sub id='7FDW9'></sub></form><legend id='7FDW9'></legend><bdo id='7FDW9'><pre id='7FDW9'><center id='7FDW9'></center></pre></bdo></b><th id='7FDW9'></th></span></q></dt></tr></i><div id='7FDW9'><tfoot id='7FDW9'></tfoot><dl id='7FDW9'><fieldset id='7FDW9'></fieldset></dl></div>

    1. <legend id='7FDW9'><style id='7FDW9'><dir id='7FDW9'><q id='7FDW9'></q></dir></style></legend>

        iOS FirebaseCloudMessaging 通知在调试/试飞或发布中不起作用

        iOS FirebaseCloudMessaging Notifications not working in Debug / Test Flight nor Release(iOS FirebaseCloudMessaging 通知在调试/试飞或发布中不起作用)

        <tfoot id='EikfH'></tfoot>
            • <bdo id='EikfH'></bdo><ul id='EikfH'></ul>

              <small id='EikfH'></small><noframes id='EikfH'>

                  <legend id='EikfH'><style id='EikfH'><dir id='EikfH'><q id='EikfH'></q></dir></style></legend>
                    <tbody id='EikfH'></tbody>
                  <i id='EikfH'><tr id='EikfH'><dt id='EikfH'><q id='EikfH'><span id='EikfH'><b id='EikfH'><form id='EikfH'><ins id='EikfH'></ins><ul id='EikfH'></ul><sub id='EikfH'></sub></form><legend id='EikfH'></legend><bdo id='EikfH'><pre id='EikfH'><center id='EikfH'></center></pre></bdo></b><th id='EikfH'></th></span></q></dt></tr></i><div id='EikfH'><tfoot id='EikfH'></tfoot><dl id='EikfH'><fieldset id='EikfH'></fieldset></dl></div>
                1. 本文介绍了iOS FirebaseCloudMessaging 通知在调试/试飞或发布中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的通知在 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 和 Apple Developer 中均处于活动状态.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 Simulator、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

                  推荐答案

                  已解决.

                  我所要做的就是改变这个:

                  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 通知在调试/试飞或发布中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
                  Resume game cocos2d(恢复游戏 cocos2d)
                  Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
                  [ios.cocos2d+box2d]how to disable auto-rotation?([ios.cocos2d+box2d]如何禁用自动旋转?)
                  Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)
                  How can I implement a virtual joystick for a cocos2d game outside the cocos2d environment?(如何在 cocos2d 环境之外实现 cocos2d 游戏的虚拟摇杆?)
                    • <bdo id='fGHQL'></bdo><ul id='fGHQL'></ul>
                          <tbody id='fGHQL'></tbody>
                        <tfoot id='fGHQL'></tfoot>
                        • <legend id='fGHQL'><style id='fGHQL'><dir id='fGHQL'><q id='fGHQL'></q></dir></style></legend>
                          <i id='fGHQL'><tr id='fGHQL'><dt id='fGHQL'><q id='fGHQL'><span id='fGHQL'><b id='fGHQL'><form id='fGHQL'><ins id='fGHQL'></ins><ul id='fGHQL'></ul><sub id='fGHQL'></sub></form><legend id='fGHQL'></legend><bdo id='fGHQL'><pre id='fGHQL'><center id='fGHQL'></center></pre></bdo></b><th id='fGHQL'></th></span></q></dt></tr></i><div id='fGHQL'><tfoot id='fGHQL'></tfoot><dl id='fGHQL'><fieldset id='fGHQL'></fieldset></dl></div>

                            <small id='fGHQL'></small><noframes id='fGHQL'>