Skip to content

Commit efdb7af

Browse files
committed
Fixing RCTBaseTextInputView.h path.
1 parent 7f73304 commit efdb7af

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

ios/ReactNativeKeyboardManager.xcodeproj/project.pbxproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,7 @@
390390
GCC_NO_COMMON_BLOCKS = YES;
391391
HEADER_SEARCH_PATHS = (
392392
"$(inherited)",
393-
"$(SRCROOT)/../node_modules/react-native/Libraries/Text",
394-
"$(SRCROOT)/../../react-native/Libraries/Text",
393+
"$(SRCROOT)/../../react-native/Libraries/Text/**",
395394
);
396395
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
397396
LIBRARY_SEARCH_PATHS = "";
@@ -419,8 +418,7 @@
419418
GCC_NO_COMMON_BLOCKS = YES;
420419
HEADER_SEARCH_PATHS = (
421420
"$(inherited)",
422-
"$(SRCROOT)/../node_modules/react-native/Libraries/Text",
423-
"$(SRCROOT)/../../react-native/Libraries/Text",
421+
"$(SRCROOT)/../../react-native/Libraries/Text/**",
424422
);
425423
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
426424
LIBRARY_SEARCH_PATHS = "";

ios/ReactNativeKeyboardManager/RCTBaseTextInputView+Hack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
// THE SOFTWARE.
2222

23-
#import <RCTText/RCTBaseTextInputView.h>
23+
#import "RCTBaseTextInputView.h"
2424
#import <Foundation/Foundation.h>
2525
#import "IQKeyboardManager.h"
2626

ios/ReactNativeKeyboardManager/ReactNativeKeyboardManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#import <React/RCTLog.h>
2929
#import <React/RCTRootView.h>
3030

31-
#import <RCTText/RCTBaseTextInputView.h>
31+
#import "RCTBaseTextInputView.h"
3232

3333
@implementation ReactNativeKeyboardManager
3434

0 commit comments

Comments
 (0)