Browse Source

Merge pull request #60 from danieldkim/master

fix for breaking iOS header change in RN 0.40.0
Yonah Forst 7 years ago
parent
commit
c11205edc1
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      Example/ios/Example/AppDelegate.m
  2. 2
    2
      Example/ios/ExampleTests/ExampleTests.m

+ 2
- 2
Example/ios/Example/AppDelegate.m View File

9
 
9
 
10
 #import "AppDelegate.h"
10
 #import "AppDelegate.h"
11
 
11
 
12
-#import "RCTBundleURLProvider.h"
13
-#import "RCTRootView.h"
12
+#import <React/RCTBundleURLProvider.h>
13
+#import <React/RCTRootView.h>
14
 
14
 
15
 @implementation AppDelegate
15
 @implementation AppDelegate
16
 
16
 

+ 2
- 2
Example/ios/ExampleTests/ExampleTests.m View File

10
 #import <UIKit/UIKit.h>
10
 #import <UIKit/UIKit.h>
11
 #import <XCTest/XCTest.h>
11
 #import <XCTest/XCTest.h>
12
 
12
 
13
-#import "RCTLog.h"
14
-#import "RCTRootView.h"
13
+#import <React/RCTLog.h>
14
+#import <React/RCTRootView.h>
15
 
15
 
16
 #define TIMEOUT_SECONDS 600
16
 #define TIMEOUT_SECONDS 600
17
 #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
17
 #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"