import UIKit import Flutter import FirebaseCore import GoogleMaps import Constants @UIApplicationMain @objc class AppDelegate: FlutterAppDelegate { override func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { GMSServices.provideAPIKey(mapsApiKey) FirebaseApp.configure() GeneratedPluginRegistrant.register(with: self) return true } }