diff --git a/docs/linking.html b/docs/linking.html index a77d11d148d..54f66648f4d 100644 --- a/docs/linking.html +++ b/docs/linking.html @@ -8,10 +8,12 @@ access and handle it from any component you want with
NOTE: For instructions on how to add support for deep linking on Android, refer Enabling Deep Links for App Content - Add Intent Filters for Your Deep Links.
NOTE: For iOS, in case you also want to listen to incoming app links during your app's
-execution you'll need to add the following lines to you *AppDelegate.m:
*AppDelegate.m:*AppDelegate.
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
{
- return [LinkingManager application:application
+ return [RCTLinkingManager application:application
continueUserActivity:userActivity
restorationHandler:restorationHandler];
}And then on your React component you'll be able to listen to the events on