1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-01 02:06:51 +00:00
app-mirror-github/ios/Runner/AppDelegate.swift

17 lines
534 B
Swift
Raw Normal View History

2018-09-14 16:59:13 +00:00
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
if #available(iOS 10.0, *) {
2022-08-23 12:02:54 +00:00
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
}
2018-09-14 16:59:13 +00:00
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}