I am trying out a demo of a react-native application
that was built (not by me) using Expo approach. After installing dependencies and trying to run the application; I get the error below:
Uncaught Error: 29.0.0 is not a valid SDK version. Options are 35.0.0 , 33.0.0, UNVERSIONED.
16:56:55 Fatal Error
.
Here is the package.json file:
{
"name": "food-shop",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
},
"dependencies": {
"expo": "^29.0.0",
"expokit": "^1.5.0",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz",
"react-navigation": "^2.11.2"
}
}
I am using Huawei Y5 Lite, Android 8.1.0. What I wish to know is,how can I resolve this error?
Thanks.