diff --git a/articles/quickstart/native/react-native/00-login.md b/articles/quickstart/native/react-native/00-login.md index c54aef2778..02b896bebe 100644 --- a/articles/quickstart/native/react-native/00-login.md +++ b/articles/quickstart/native/react-native/00-login.md @@ -85,6 +85,25 @@ At runtime, the `applicationId` value will automatically update with your applic ### Configure iOS +**For react-native 0.77+** + +In the file `ios//AppDelegate.swift` add the following: + +```swift +// … + +@main +class AppDelegate: RCTAppDelegate { + // … + + override func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { + return RCTLinkingManager.application(app, open: url, options: options) + } +} +``` + +**For react-native < 0.77** + In the file `ios//AppDelegate.mm` add the following: ```objc