From 234cf6f2e9defe8d9e506d94bb83aed3fa3106b7 Mon Sep 17 00:00:00 2001 From: DaikiInaba Date: Mon, 4 Jun 2018 01:08:33 +0900 Subject: [PATCH] Fix error for redefinition of RCTMethodInfo --- ios/OAuthManager/OAuthManager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ios/OAuthManager/OAuthManager.h b/ios/OAuthManager/OAuthManager.h index 4f653e4..4fcf44b 100644 --- a/ios/OAuthManager/OAuthManager.h +++ b/ios/OAuthManager/OAuthManager.h @@ -7,10 +7,10 @@ #import -#if __has_include("RCTBridgeModule.h") - #import "RCTBridgeModule.h" -#else +#if __has_include() #import +#else + #import "RCTBridgeModule.h" #endif #if __has_include("RCTLinkingManager.h")