2020-11-06 18:04:04 +08:00
|
|
|
import UIKit
|
|
|
|
import Flutter
|
|
|
|
|
|
|
|
@UIApplicationMain
|
|
|
|
@objc class AppDelegate: FlutterAppDelegate {
|
|
|
|
override func application(
|
|
|
|
_ application: UIApplication,
|
|
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
|
|
|
) -> Bool {
|
|
|
|
GeneratedPluginRegistrant.register(with: self)
|
2021-08-04 22:35:55 +08:00
|
|
|
dummyMethodToEnforceBundling();
|
2020-11-06 18:04:04 +08:00
|
|
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
|
|
}
|
2021-08-04 22:35:55 +08:00
|
|
|
|
|
|
|
public func dummyMethodToEnforceBundling() {
|
2023-08-30 18:25:50 +08:00
|
|
|
dummy_method_to_enforce_bundling();
|
2023-10-15 16:05:29 +08:00
|
|
|
session_get_rgba(nil, 0);
|
2021-08-04 22:35:55 +08:00
|
|
|
}
|
2020-11-06 18:04:04 +08:00
|
|
|
}
|