Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @UIApplicationMain
- @objc class AppDelegate: FlutterAppDelegate {
- override func application(
- _ application: UIApplication,
- didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
- ) -> Bool {
- GeneratedPluginRegistrant.register(with: self)
- if #available(iOS 10.0, *) {
- UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
- }
- return super.application(application, didFinishLaunchingWithOptions: launchOptions)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement