Integrate FLEX (#4394)

Set up FLEX for debug builds under a 2 finger double tap anywhere on the screen.
This commit is contained in:
Stefan Ceriu
2021-06-09 09:58:22 +03:00
committed by GitHub
parent b51c6ed630
commit de33fa7cf0
4 changed files with 28 additions and 4 deletions
+1 -3
View File
@@ -55,8 +55,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
}
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
// Setup window
let window = UIWindow(frame: UIScreen.main.bounds)
self.window = window
@@ -64,7 +62,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// Create AppCoordinator
self.rootRouter = RootRouter(window: window)
let appCoordinator = AppCoordinator(router: self.rootRouter)
let appCoordinator = AppCoordinator(router: self.rootRouter, window: window)
appCoordinator.start()
self.legacyAppDelegate.delegate = appCoordinator