mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-03 03:19:27 +08:00
5c9ee03389
don't know why call session_get_rgba Signed-off-by: 21pages <pages21@163.com>
20 lines
568 B
Swift
20 lines
568 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)
|
|
dummyMethodToEnforceBundling();
|
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
}
|
|
|
|
public func dummyMethodToEnforceBundling() {
|
|
dummy_method_to_enforce_bundling();
|
|
session_get_rgba(nil, 0);
|
|
}
|
|
}
|