Not using the Expo fork of react-native

Viewed 15697

I'm using expo with react native. All is fine, but i get this warning and the app takes a long time in loading :

  [exp] Warning: Not using the Expo fork of react-native. See https://docs.expo.io/.

How can i fix it please.

2 Answers

That's how I fixed it:

  1. I updated my "react-native" dependency to the latest one available:

"https://github.com/expo/react-native/archive/sdk-23.0.0.tar.gz"

  1. I removed all dependency that I had installed by mistake in my previous expo app that actually required react-native link using the npm uninstall --save command:

react-native-image-to-base64, react-native-cloudinary

  1. Then I also had to remove them from the General > Linked Frameworks and Libraries

Now it works! I'm having issues with the Facebook Login now but at least it doesn't crash my app.

Good luck to you.

Related