Skip to content
This repository was archived by the owner on Oct 12, 2018. It is now read-only.

check if RCTBridgeModule.h already imported, for react v15.5+ #66

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Core/ios/Core/AWSRNCognitoCredentials.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
#import <AWSCore/AWSTask.h>

#import "RCTEventDispatcher.h"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
#import "AWSRNHelper.h"

@interface AWSRNCognitoCredentials : NSObject <RCTBridgeModule, AWSIdentityProviderManager>
Expand Down
2 changes: 2 additions & 0 deletions Core/ios/Core/AWSRNHelper.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ - (AWSRegionType)regionTypeFromString: (NSString*)region {
regionType = AWSRegionUSWest2;
} else if ([region isEqualToString:@"eu-west-1"]) {
regionType = AWSRegionEUWest1;
} else if ([region isEqualToString:@"eu-west-2"]) {
regionType = AWSRegionEUWest2;
} else if ([region isEqualToString:@"eu-central-1"]) {
regionType = AWSRegionEUCentral1;
} else if ([region isEqualToString:@"ap-southeast-1"]) {
Expand Down
4 changes: 4 additions & 0 deletions DynamoDB/ios/DynamoDB/AWSRNDynamoDBClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
#import <AWSDynamoDB/AWSDynamoDB.h>

#import "RCTEventDispatcher.h"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif

@interface AWSRNDynamoDBClient : NSObject <RCTBridgeModule>

Expand Down
4 changes: 4 additions & 0 deletions Lambda/ios/Lambda/AWSRNLambdaClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
#import <AWSLambda/AWSLambda.h>

#import "RCTEventDispatcher.h"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif

@interface AWSRNLambdaClient : NSObject <RCTBridgeModule>

Expand Down
4 changes: 4 additions & 0 deletions SNS/ios/SNS/AWSRNSNSClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
#import <AWSSNS/AWSSNS.h>

#import "RCTEventDispatcher.h"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif

@interface AWSRNSNSClient : NSObject <RCTBridgeModule>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
#import <AWSS3/AWSS3.h>

#import "RCTEventDispatcher.h"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
#import "AWSRNHelper.h"

@interface AWSRNS3TransferUtility : NSObject <RCTBridgeModule>
Expand Down
6 changes: 5 additions & 1 deletion UserPools/ios/Login.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@

#import <Foundation/Foundation.h>
#import <AWSCognitoIdentityProvider/AWSCognitoIdentityProvider.h>
#import "RCTBridgeModule.h"
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
#import "RCTLog.h"

@interface Login : NSObject<AWSCognitoIdentityInteractiveAuthenticationDelegate, AWSCognitoIdentityPasswordAuthentication, RCTBridgeModule>
Expand Down