From ba5d314059451408c330371540e0db1704f44c20 Mon Sep 17 00:00:00 2001 From: Thomas Fransolet Date: Thu, 11 Jan 2024 14:57:11 +0100 Subject: [PATCH] update appdelegate for ios --- ios/Runner/AppDelegate.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift index 70693e4..4ef87e3 100644 --- a/ios/Runner/AppDelegate.swift +++ b/ios/Runner/AppDelegate.swift @@ -1,5 +1,6 @@ import UIKit import Flutter +import GoogleMaps @UIApplicationMain @objc class AppDelegate: FlutterAppDelegate { @@ -7,6 +8,7 @@ import Flutter _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { + GMSServices.provideAPIKey("AIzaSyDg6ApuZb6TRsauIyHJ9-XVwGYeh7MsWXE") GeneratedPluginRegistrant.register(with: self) return super.application(application, didFinishLaunchingWithOptions: launchOptions) }