Files
rog_app/ios/Runner/AppDelegate.swift

16 lines
510 B
Swift
Raw Normal View History

2022-03-14 12:28:57 +05:30
import UIKit
import Flutter
2022-05-18 19:09:26 +05:30
import GoogleMaps
2022-03-14 12:28:57 +05:30
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
2022-05-24 20:43:41 +05:30
GMSServices.provideAPIKey("AIzaSyAUBI1ablMKuJwGj2-kSuEhvYxvB1A-mOE")
2022-03-14 12:28:57 +05:30
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}