mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
FlutterImplicitEngineDelegate and FlutterImplicitEngineBridge are not part of the stable Flutter SDK (3.35.x). Use the standard AppDelegate pattern with GeneratedPluginRegistrant.register(with: self) instead. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
404 B
Swift
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)
|
|
}
|
|
}
|