我正在尝试在我的应用程序上使用颤振 firebase 消息传递。我在pubspec.yaml文件中安装了这些库:
dependencies:
...
firebase_core: ^0.5.1
firebase_messaging: ^8.0.0-dev.9
在 android 中我没有任何问题但在 Ios 中,即使我的应用程序在前台,我也没有收到任何消息。事实上FirebaseMessaging.onMessage
并FirebaseMessaging.onBackgroundMessage
没有触发。
Future initialise() async {
//Firebase.initializeApp() I initialized on main method first
FirebaseMessaging _fcm = FirebaseMessaging.instance;
_fcm.requestPermission(alert: true, badge: true, sound: true);
if (Platform.isAndroid) {
_token = await _fcm.getToken();
print("------> token is: $_token");
} else if (Platform.isIOS) {
_token = await _fcm.getAPNSToken(); // token received from firebase
print("------> token is: $_token");
}
FirebaseMessaging.onMessage.listen((remoteMessage) async {
print('[onMessage] message: ${remoteMessage.data}');
var msg = PushMsgModel().wrapOriginMessage(remoteMessage);
_showOverlyNotify(msg);
});
FirebaseMessaging.onBackgroundMessage(onBackgroundMessage);
}
对于我添加的 IOS 配置
<key>FirebaseAppDelegateProxyEnabled</key> <false/>
在
Info.plist
.我创建了 APNs 证书并添加到 ios firebase 项目设置中
我注册了一个应用标识符
我生成了一个配置文件并添加到
Provisioning Profile
xcode 中。在 Xcode 中,我在 Project Navigator 中选择了 Runner。在里面
功能选项卡 我打开了推送通知和后台模式,并在后台模式下启用了后台获取和远程通知。
我还使用 Xcode 在 ios/Runner.xcworkspace 中复制了 GoogleService-Info.plist 文件。
AppDelegate.swift 包括:
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
}
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
但是当我从firebase控制台推送消息时,我无法在android studio控制台上收到任何消息?我的错误是什么?有人能帮我吗?
当应用程序可以获取令牌意味着我的配置是正确的?
我正在使用软件版本 14.4在iPhone7plus(mobile)上进行测试