flutter + firebaseでタイトルのエラー発生
ios/AppDelegate.swift
にfirebaseを入れていたのですが、xcodeでデバッグしたらすでに設定されてます、と表示されていたのでコメントしたら動きました
import UIKit
import Flutter
import GoogleMaps
// import Firebase
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GMSServices.provideAPIKey("AIzaSyBiEecWLB76tDS95WA_hwCQgHLnfhazMo4")
GeneratedPluginRegistrant.register(with: self)
// FirebaseApp.configure()
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
参考記事
なし、消したら動いた
コメントを残す