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
Running pod install fails with Podfile as per instructions with RN 0.44.0. I'm getting:
[!] Unable to satisfy the following requirements:
Yoga (= 0.44.0.React) required by React/Core (0.44.0)
None of your spec sources contain a spec satisfying the dependency: Yoga (= 0.44.0.React).
You have either:
out-of-date source repos which you can update with pod repo update or with pod install --repo-update.
mistyped the name or version.
not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, pod repo update does not happen on pod install by default.
After a bit of Googling I was able to come around this by adding this line to the Podfile: pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
The text was updated successfully, but these errors were encountered:
Running
pod install
fails with Podfile as per instructions with RN 0.44.0. I'm getting:[!] Unable to satisfy the following requirements:
Yoga (= 0.44.0.React)
required byReact/Core (0.44.0)
None of your spec sources contain a spec satisfying the dependency:
Yoga (= 0.44.0.React)
.You have either:
pod repo update
or withpod install --repo-update
.Note: as of CocoaPods 1.0,
pod repo update
does not happen onpod install
by default.After a bit of Googling I was able to come around this by adding this line to the Podfile:
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
The text was updated successfully, but these errors were encountered: