Files
tripz/ios/Runner/AppDelegate.swift
Hamza-Ayed 474b523d3c 1/15/1
2024-01-15 12:40:19 +03:00

21 lines
459 B
Swift

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
}
}