You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
Swift
40 lines
1.5 KiB
Swift
import UIKit
|
|
import Flutter
|
|
import GoogleMaps
|
|
|
|
var userNotificationCenterDelegate:UNUserNotificationCenterDelegate? = nil
|
|
|
|
@UIApplicationMain
|
|
@objc class AppDelegate: FlutterAppDelegate {
|
|
let locationManager = CLLocationManager()
|
|
|
|
override func application( _ application: UIApplication,didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
|
|
GMSServices.provideAPIKey("AIzaSyCiiJiHkocPbcziHt9O8rGWavDrxHRQys8")
|
|
GeneratedPluginRegistrant.register(with: self)
|
|
|
|
|
|
if let mainViewController = window.rootViewController as? MainFlutterVC{
|
|
HMGPlatformBridge.initialize(flutterViewController: mainViewController)
|
|
}
|
|
|
|
if let _ = launchOptions?[.location] {
|
|
HMG_Geofence.initGeofencing()
|
|
}
|
|
|
|
UNUserNotificationCenter.current().delegate = self
|
|
|
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
}
|
|
}
|
|
|
|
extension AppDelegate{
|
|
override func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
|
|
if (notification.request.content.categoryIdentifier == HmgLocalNotificationCategoryIdentifier){
|
|
completionHandler([.alert,.sound])
|
|
}else{
|
|
super.userNotificationCenter(center, willPresent: notification, withCompletionHandler: completionHandler)
|
|
}
|
|
}
|
|
}
|