sense_the_rythm

rythm game for ESense Earable
git clone git://source.orangerot.dev:/university/sense_the_rythm.git
Log | Files | Refs | README | LICENSE

AppDelegate.swift (391B)


      1 import Flutter
      2 import UIKit
      3 
      4 @main
      5 @objc class AppDelegate: FlutterAppDelegate {
      6   override func application(
      7     _ application: UIApplication,
      8     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
      9   ) -> Bool {
     10     GeneratedPluginRegistrant.register(with: self)
     11     return super.application(application, didFinishLaunchingWithOptions: launchOptions)
     12   }
     13 }