RNTextInputMask React/RCTBridge.h file not found
See original GitHub issueAfter run:
yarn install react-native-text-input-mask
react-native link react-native-text-input-mask
got this error on xcode
RNTextInputMask React/RCTBridge.h file not found
How do I fix it?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:23 (1 by maintainers)
Top Results From Across the Web
`React/RCTBridgeModule.h` file not found - Stack Overflow
In my case this particular problem happened when I was trying to archive a 0.40+ react-native app for iOS (solution was found here:...
Read more >[iOS - RN 0.61.1 migration] React/RCTBridgeModule.h file not ...
When you go to scheme -> edit scheme -> build. Do you have see React (missing) ? If so, i might have a...
Read more >React/RCTBridgeModule.h file not f… | Apple Developer Forums
node_modules/react-native/Libraries/Vibration/RCTVibration.h:10:9: 'React/RCTBridgeModule.h' file not found. Why the build process is different between the ...
Read more >[Solved]-`React/RCTBridgeModule.h` file not found-Reactjs
Coding example for the question `React/RCTBridgeModule.h` file not found-Reactjs.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So, after much work done, i found a problem with the linking part of this library, which imported the wrong archives to my Libraries folder.
To fix that I’ve made the linking part myself on IOS(Android worked fine with the link). To do that, you right click your Libraries folder in xcode, and select “Add Files to [your project name]”, it will ask you which file you are willing to import… you go to your node_modules files in your project (assuming you already have added the react-native-text-input-mask and installed it) you find the react-native-text-input-mask project and search for
RNTextInputMask.xcodeproj
, click ok to import. Now you have this library imported in your project, and we must include it in the build phases. To do that you have to go to the “general” tab in xcode and drag and drop thelibRNTextInputMask.a
that is in theRNTextInputMask.xcodeproj > Products > libRNTextInputMask.a
to yourLinked Frameworks and Libraries
. Clean your project and rebuild it, and its done.It worked for me, idk if it will for everyone.
Confirm getting the same issue with a clean install