1
0
mirror of https://github.com/krawieck/lemmur/ synced 2024-12-15 01:54:34 +01:00
lemmur-app-android/ios/Runner/AppDelegate.swift
2020-08-02 13:34:42 +02:00

14 lines
404 B
Swift

import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}