We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9620531 + 2889243 commit 7861072Copy full SHA for 7861072
ios/OAuthManager/OAuthManager.h
@@ -7,8 +7,18 @@
7
8
#import <Foundation/Foundation.h>
9
10
-#import <React/RCTBridgeModule.h>
11
-#import <React/RCTLinkingManager.h>
+#if __has_include("RCTBridgeModule.h")
+ #import "RCTBridgeModule.h"
12
+else
13
+ #import <React/RCTBridgeModule.h>
14
+#endif
15
+
16
+#if __has_include("RCTLinkingManager.h")
17
+ #import "RCTLinkingManager.h"
18
19
+ #import <React/RCTLinkingManager.h>
20
21
22
23
@class OAuthClient;
24
0 commit comments