File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Example/ios/RNAppAuthExample Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
30
30
return YES ;
31
31
}
32
32
33
+ - (BOOL )application : (UIApplication *)app openURL : (NSURL *)url options : (NSDictionary <NSString *, id> *) options {
34
+ return [self .authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL: url];
35
+ }
36
+
33
37
- (NSURL *)sourceURLForBridge : (RCTBridge *)bridge
34
38
{
35
39
#if DEBUG
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ Make `AppDelegate` conform to `RNAppAuthAuthorizationFlowManager` with the follo
341
341
Add the following code to ` AppDelegate.m` (to support iOS 10 and below)
342
342
343
343
` ` ` diff
344
- + (BOOL)application:(UIApplication * )app openURL:(NSURL * )url options:(NSDictionary< NSString * , id> * ) options {
344
+ + - (BOOL)application:(UIApplication * )app openURL:(NSURL * )url options:(NSDictionary< NSString * , id> * ) options {
345
345
+ return [self.authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL:url];
346
346
+ }
347
347
` ` `
You can’t perform that action at this time.
0 commit comments