You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's configure the native iOS app to open based on the `example://` URI scheme.
98
101
99
-
You'll need to link `RCTLinking` to your project by following the steps described here. To be able to listen to incoming app links, you'll need to add the following lines to `AppDelegate.m` in your project:
102
+
You'll need to add the LinkingIOS folder into your header search paths as described [here](https://reactnative.dev/docs/linking-libraries-ios#step-3). Then you'll need to add the following lines to your or `AppDelegate.swift` or `AppDelegate.mm` file:
@@ -124,27 +158,8 @@ If your app is using [Universal Links](https://developer.apple.com/ios/universal
124
158
}
125
159
```
126
160
127
-
If you're using Swift, you'll need to add the following to your `AppDelegate.swift`file. You can find more information in the [React Native documentation](https://reactnative.dev/docs/linking?ios-language=swift).
128
-
129
-
```swift
130
-
// Add this to your AppDelegate.swift file
131
-
132
-
import React
133
-
134
-
@UIApplicationMain
135
-
class AppDelegate: UIResponder, UIApplicationDelegate {
0 commit comments