Blame view

ios/Runner/AppDelegate.swift 451 Bytes
wangguolei authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import UIKit
import Flutter

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