浏览代码

Merge pull request #60 from danieldkim/master

fix for breaking iOS header change in RN 0.40.0
Yonah Forst 7 年前
父节点
当前提交
c11205edc1
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 2
    2
      Example/ios/Example/AppDelegate.m
  2. 2
    2
      Example/ios/ExampleTests/ExampleTests.m

+ 2
- 2
Example/ios/Example/AppDelegate.m 查看文件

@@ -9,8 +9,8 @@
9 9
 
10 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 15
 @implementation AppDelegate
16 16
 

+ 2
- 2
Example/ios/ExampleTests/ExampleTests.m 查看文件

@@ -10,8 +10,8 @@
10 10
 #import <UIKit/UIKit.h>
11 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 16
 #define TIMEOUT_SECONDS 600
17 17
 #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"