ソースを参照

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!"