Files
driver_tripz/ios/Runner/AppDelegate.swift
Hamza-Ayed 7af7e71b30 1/18/1
2024-01-18 00:49:00 +03:00

21 lines
493 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("AIzaSyCyfwRXTwSTLOFQSQgN5p7QZgGJVZnEKq0")
FirebaseApp.configure()
GeneratedPluginRegistrant.register(with: self)
return true
}
}