Last active
October 2, 2024 08:54
-
-
Save okwasniewski/bafb5d123fab4ca7d083553b27b11700 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import React | |
import React_RCTAppDelegate | |
class AppDelegate: RCTAppDelegate { | |
override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { | |
// Do any setup your app needs | |
self.automaticallyLoadReactNativeWindow = false | |
// Remember to call super | |
return super.application(application, didFinishLaunchingWithOptions: launchOptions) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment