Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion articles/quickstart/native/react-native/00-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<YOUR PROJECT>/AppDelegate.mm` add the following:
If you're using (Swift - `ios/<YOUR PROJECT>/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/<YOUR PROJECT>/AppDelegate.mm`) add the following:

```objc
#import <React/RCTLinkingManager.h>
Expand Down