galio-org / galio-starter-kit

Galio's starter kit is an app you can use to see what you can create with our library
https://galio.io
MIT License
181 stars 70 forks source link

Expo Client on Android/iOS | Requires v37.0.0 #23

Open jeffsdata opened 3 years ago

jeffsdata commented 3 years ago

I tried spinning up this project using expo, and on the client app, it gives the error:

"Something went wrong.

This project uses SDK v35.0.0, but this version of the Expo client requires at least v37.0.0."

jabeca86 commented 3 years ago

Same issue here.

fabioreina commented 3 years ago

Same issue here.

KubilayKerim commented 3 years ago

Can confirm still happening.

jabeca86 commented 3 years ago

Can confirm still happening.

Still happening.

tresorama commented 3 years ago

i followed this : https://stackoverflow.com/questions/52287710/the-experience-you-requested-uses-expo-sdk-vnull-but-this-copy-of-expo-client

In short : in app.json change "expo" => "sdkVersion" to "37.0.0",

in package.json change "dependencies" => "expo" to "^37.0.0", in package.json change "dependencies" => "react-native" to"https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz",

delete "node_modules" folder. run in terminal : npm install run in terminal: expo-start

Done!

Maybe some other depemdemcies need to be upgraded, but at least app starts...

jabeca86 commented 3 years ago

i followed this : https://stackoverflow.com/questions/52287710/the-experience-you-requested-uses-expo-sdk-vnull-but-this-copy-of-expo-client

In short : in app.json change "expo" => "sdkVersion" to "37.0.0",

in package.json change "dependencies" => "expo" to "^37.0.0", in package.json change "dependencies" => "react-native" to"https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz",

delete "node_modules" folder. run in terminal : npm install run in terminal: expo-start

Done!

Maybe some other depemdemcies need to be upgraded, but at least app starts...

It works! Thank you, tresorama!

burakkaramete commented 3 years ago

i followed this : https://stackoverflow.com/questions/52287710/the-experience-you-requested-uses-expo-sdk-vnull-but-this-copy-of-expo-client

In short : in app.json change "expo" => "sdkVersion" to "37.0.0",

in package.json change "dependencies" => "expo" to "^37.0.0", in package.json change "dependencies" => "react-native" to"https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz",

delete "node_modules" folder. run in terminal : npm install run in terminal: expo-start

Done!

Maybe some other depemdemcies need to be upgraded, but at least app starts...

Great solution. Thanks a lot !