【发布时间】:2021-12-29 01:05:18
【问题描述】:
- android 运行良好
2.从firebase站点到iOS真机运行良好(下面这个推送到ios就可以了) 3. 从iOS远程推送到安卓效果很好
- 但无法向 iOS 远程推送消息
我的 Appdelegate.swift
import UIKit
import Flutter
import Firebase
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
FirebaseApp.configure() //add this before the code below
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
【问题讨论】:
标签: ios flutter firebase-cloud-messaging