func application()

in Sample/Pluginized/TicTacToe/TicTacToeCore/AppDelegate.swift [25:37]


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        registerProviderFactories()

        let window = UIWindow(frame: UIScreen.main.bounds)
        self.window = window

        let rootComponent = RootComponent()
        window.rootViewController = rootComponent.rootViewController

        window.makeKeyAndVisible()

        return true
    }