MIF_E31230910_MP-HRIS-MOBILE/ios/Runner/AppDelegate.swift

17 lines
483 B
Swift

import Flutter
import UIKit
import GoogleMaps
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GMSServices.provideAPIKey("AIzaSyAElDL1y9HnBCx5d_r1LB-Mg3VTA1faVug")
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}