iOS FirebaseCloudMessaging Notifications not working in Debug / Test Flight nor Release(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:
- https://medium.com/flutterpub/enabling-firebase-cloud-messaging-push-notifications-with-flutter-39b08f2ed723
- 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),
);
}
似乎即使我不使用 onResume、onLaunch &onMessage configure 方法必须被调用.
Seems like even though I don't use the onResume, onLaunch & onMessage the configure method has to be called.
这篇关于iOS FirebaseCloudMessaging 通知在调试/试飞或发布中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS FirebaseCloudMessaging 通知在调试/试飞或发布中不起作用
基础教程推荐
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
