This commit is contained in:
lizandrogd
2023-10-12 13:42:43 -05:00
parent cfa52bbbe8
commit 6520495bc7
5 changed files with 50 additions and 8 deletions
+6 -1
View File
@@ -1,5 +1,6 @@
import UIKit
import Flutter
import GoogleMaps
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
@@ -8,6 +9,10 @@ import Flutter
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
// Inicializa Google Maps SDK para iOS con tu clave de API de Google Maps
GMSServices.provideAPIKey("AIzaSyAkXnvz5qfsozAso-hO_3sNnUi0kbrFCH4")
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
}