pod installation failed with react native 0.44

cocoapods, ios, react-native

Solution

pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'

Problem

I was working on a react native project with the local database. I used this https://github.com/andpor/react-native-sqlite-storage for local database access. It was working fine with RN 0.41. But now when I upgrade my RN version to 0.44 I am getting following errors with pod install. ``` 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`. * 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. ``` This is my podfile: ``` target 'ProjectName' do pod 'React', :path => '../node_modules/react-native' <br> pod 'react-native-sqlite-storage', :path => '../node_modules/react-native-sqlite-storage' end ``` I have tried lots of things but not able to solve this error. I created a new react project but and it was not working in that too

Original source