Reputation: 31
I try for del/install pod and node_module folder but the same issue occurred in xcode
error Could not find the following native modules: RNCMaskedView, RNReanimated, RNScreens. Did you forget to run pod install
?
Upvotes: 3
Views: 2573
Reputation: 588
Make sure these 2 pods are included in your PodFile
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
Then run pod install --repo-update
I got this working using React-native 0.62
Upvotes: 9
Reputation: 31
In my case adding
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
solved the problem.
Upvotes: 3