No description provided.
3 thoughts on “React Pod has been deprecated”
Comments are closed.
No description provided.
3 thoughts on “React Pod has been deprecated”
-
workaround:
add to Podfile:
pod ‘React’, :path => ‘../node_modules/react-native’ -
Is the Pod even necessary?It’s necessary, and when using the workaround proposed by @maciekjablonski, you have to add Yoga too:pod 'React', path: '../node_modules/react-native' pod 'Yoga', path: '../node_modules/react-native/ReactCommon/yoga' pod 'RNDeviceInfo', path: '../node_modules/react-native-device-info'
-
Comments are closed.
workaround:
add to Podfile:
pod ‘React’, :path => ‘../node_modules/react-native’
Is the Pod even necessary?It’s necessary, and when using the workaround proposed by @maciekjablonski, you have to add Yoga too:In addition to the pods @koenpunt mentions, pod yoga needs to be lower case:
pod 'yoga', path: '../node_modules/react-native/ReactCommon/yoga'
This page from React Native may help.