From 901f97be7cfba1908f9bbd159cc545157b3f91aa Mon Sep 17 00:00:00 2001
From: Travis CI
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