Files
driver_tripz/ios/Runner/AppDelegate.swift
Hamza-Ayed b09e0da403 9/19/2
2024-09-19 06:55:42 +03:00

21 lines
480 B
Swift

import UIKit
import Flutter
import FirebaseCore
import GoogleMaps
// import Constants
@main
@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
}
}