Commit 1ca40245 authored by Terrillo Walls's avatar Terrillo Walls Committed by GitHub

Merge pull request #18 from Cavallete/react-native-40

Fix compile bugs related to React Native 0.40
parents a6205b95 c4a303ae
...@@ -269,8 +269,8 @@ ...@@ -269,8 +269,8 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
HEADER_SEARCH_PATHS = ( HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../react-native/React/**", "$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/node_modules/react-native/React/**", "$(SRCROOT)/../../../React/**",
); );
OTHER_LDFLAGS = "-ObjC"; OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
...@@ -282,8 +282,8 @@ ...@@ -282,8 +282,8 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
HEADER_SEARCH_PATHS = ( HEADER_SEARCH_PATHS = (
"$(SRCROOT)/../react-native/React/**", "$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/node_modules/react-native/React/**", "$(SRCROOT)/../../../React/**",
); );
OTHER_LDFLAGS = "-ObjC"; OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
#import "RCTAppleHealthKit+Queries.h" #import "RCTAppleHealthKit+Queries.h"
#import "RCTAppleHealthKit+Utils.h" #import "RCTAppleHealthKit+Utils.h"
#import "RCTBridge.h" #import <React/RCTBridgeModule.h>
#import "RCTEventDispatcher.h" #import <React/RCTEventDispatcher.h>
@implementation RCTAppleHealthKit (Methods_Fitness) @implementation RCTAppleHealthKit (Methods_Fitness)
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import <HealthKit/HealthKit.h> #import <HealthKit/HealthKit.h>
#import "RCTBridgeModule.h" #import <React/RCTBridgeModule.h>
#import "RCTUtils.h" #import <React/RCTUtils.h>
#import "RCTLog.h" #import <React/RCTLog.h>
@interface RCTAppleHealthKit : NSObject <RCTBridgeModule> @interface RCTAppleHealthKit : NSObject <RCTBridgeModule>
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
#import "RCTAppleHealthKit+Methods_Results.h" #import "RCTAppleHealthKit+Methods_Results.h"
#import "RCTAppleHealthKit+Methods_Sleep.h" #import "RCTAppleHealthKit+Methods_Sleep.h"
#import "RCTBridge.h" #import <React/RCTBridgeModule.h>
#import "RCTEventDispatcher.h" #import <React/RCTEventDispatcher.h>
@implementation RCTAppleHealthKit @implementation RCTAppleHealthKit
@synthesize bridge = _bridge; @synthesize bridge = _bridge;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment