Skip to content

Commit

Permalink
Change import priority of React/RCTBridgeModule.h (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
DoSmile0705 authored and ivpusic committed Sep 5, 2017
1 parent 7d72137 commit d3f74bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ios/ImageCropPicker.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

#import <Foundation/Foundation.h>

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

#if __has_include("QBImagePicker.h")
Expand Down

0 comments on commit d3f74bb

Please sign in to comment.