File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -330,11 +330,14 @@ Make `AppDelegate` conform to `RNAppAuthAuthorizationFlowManager` with the follo
330
330
+ @property(nonatomic, weak)id<RNAppAuthAuthorizationFlowManagerDelegate>authorizationFlowManagerDelegate;
331
331
` ` `
332
332
333
- Add the following code to ` AppDelegate.m` (to support iOS 10 and below )
333
+ Add the following code to ` AppDelegate.m` (to support iOS <= 10 and React Navigation deep linking )
334
334
335
335
` ` ` diff
336
336
+ - (BOOL)application:(UIApplication * )app openURL:(NSURL * )url options:(NSDictionary< NSString * , id> * ) options {
337
- + return [self.authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL:url];
337
+ + if ([self.authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL:url]) {
338
+ + return YES;
339
+ + }
340
+ + return [RCTLinkingManager application:app openURL:url options:options];
338
341
+ }
339
342
` ` `
340
343
You can’t perform that action at this time.
0 commit comments