Skip to content

Commit abf0e7f

Browse files
authored
Merge pull request react-native-text-input-mask#137 from waqas19921/master
Changes to work with pods integration.
2 parents 30c606e + 1aa3e12 commit abf0e7f

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
## Changelog
12

3+
### Version 2.0.0
4+
5+
* Updated the headers in `RNTextInputMask.m` file to work with pods integration

ios/RNTextInputMask.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#import <React/RCTBridge.h>
22
#import <React/RCTConvert.h>
33
#import <React/RCTUIManager.h>
4-
#import <RCTText/RCTBaseTextInputView.h>
5-
#import <RCTText/RCTUITextField.h>
4+
#import "RCTBaseTextInputView.h"
5+
#import "RCTUITextField.h"
66
#import "RNTextInputMask.h"
77

88
@import InputMask;
@@ -51,4 +51,4 @@ - (dispatch_queue_t)methodQueue {
5151
});
5252
}];
5353
}
54-
@end
54+
@end

ios/RNTextInputMask.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,8 @@
275275
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
276276
"$(SRCROOT)/../../../React/**",
277277
"$(SRCROOT)/../../react-native/React/**",
278+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
279+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/React-Core/**",
278280
);
279281
LIBRARY_SEARCH_PATHS = "$(inherited)";
280282
OTHER_LDFLAGS = "-ObjC";
@@ -291,6 +293,8 @@
291293
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
292294
"$(SRCROOT)/../../../React/**",
293295
"$(SRCROOT)/../../react-native/React/**",
296+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
297+
"$(SRCROOT)/../../../ios/Pods/Headers/Public/React-Core/**",
294298
);
295299
LIBRARY_SEARCH_PATHS = "$(inherited)";
296300
OTHER_LDFLAGS = "-ObjC";

0 commit comments

Comments
 (0)