Trying to build the latest version of the React Native Sample App (00-Login
folder) and it should just be yarn install
, cd ios
, pod install
and boom! But, I get an error (below) and regardless of what I do I can’t get around it. Have the dependencies been updated recently?
Error:
[!] CocoaPods could not find compatible versions for pod “Auth0”:
In snapshot (Podfile.lock):
Auth0 (= 2.4.0)
In Podfile:
A0Auth0 (from ../node_modules/react-native-auth0
) was resolved to 3.0.0, which depends on
Auth0 (= 2.5.0)
You have either:
- out-of-date source repos which you can update with
pod repo update
or withpod install --repo-update
. - changed the constraints of dependency
Auth0
inside your development podA0Auth0
.
You should runpod update Auth0
to apply changes you’ve made.
I should add, using pod update Auth0
fails due to a boost
checksum verification failure. The Internet seems to agree that that error is fixed through a newer version of React Native.