Files
Eventify-frontend/ios/Runner/AppDelegate.swift

16 lines
467 B
Swift
Raw Normal View History

2026-01-31 15:23:18 +05:30
import Flutter
import UIKit
2026-03-11 20:13:13 +05:30
import GoogleMaps
2026-01-31 15:23:18 +05:30
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
2026-03-11 20:13:13 +05:30
GMSServices.provideAPIKey("YOUR_GOOGLE_MAPS_API_KEY")
2026-01-31 15:23:18 +05:30
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}