remove subfolder flutter_hbb

This commit is contained in:
rustdesk
2021-08-30 21:12:31 +08:00
parent 83736732fc
commit 903a4ea27f
90 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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() {
get_rgba();
free_rgba(nil);
get_by_name("", "");
set_by_name("", "");
}
}