Files
meshcore-sar_android/ios/Runner/AppDelegate.swift
Janez T f7d4c024d4 fix: revert iOS AppDelegate to standard Flutter template
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>
2026-02-28 19:57:41 +01: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)
}
}