diff --git a/articles/quickstart/native/react-native/00-login.md b/articles/quickstart/native/react-native/00-login.md index 325a8f6ff2..c8468d06d3 100644 --- a/articles/quickstart/native/react-native/00-login.md +++ b/articles/quickstart/native/react-native/00-login.md @@ -84,8 +84,16 @@ At runtime, the `applicationId` value will automatically update with your applic ::: ### Configure iOS +#### AppDelegate Setup (Choose Based on Architecture) -In the file `ios//AppDelegate.mm` add the following: +If you're using (Swift - `ios//AppDelegat.swift`) add the following in `AppDelegate` class: + +```swift +func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { + return RCTLinkingManager.application(app, open: url, options: options) +} +``` +If you're using (Objective-C++ - `ios//AppDelegate.mm`) add the following: ```objc #import