You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure your Podfile contains use_native_modules! after dependencies e.g.:
...
target 'MyApp' do
pod 'React', :path => '../node_modules/react-native/'
...
target 'MyAppTests' do
inherit! :search_paths
# Pods for testing
end
use_native_modules! # Required for autolink
end
I get
'React/RCTView.h' file not found
whenever I try to compile my react-native app for iOs. Can it be fixed? Thank youThe text was updated successfully, but these errors were encountered: