Files
prosappco/ios/Runner/AppDelegate.swift
T
2024-05-21 10:26:19 -05:00

21 lines
620 B
Swift

import UIKit
import Flutter
import GoogleMaps
import Firebase
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
FirebaseApp.configure()
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)
}
}