Files
TravelMate/ios/Runner/AppDelegate.swift
2025-10-13 21:35:37 +02:00

16 lines
482 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("AIzaSyBSuFmXz5nNd9Y_9h52Rbp5U0qqNkscH4M")
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}