My app was working till today but now it looks like something happened to version 18 of Expo.
I got this error:
The experience you requested uses Expo SDK v(null), but this copy of Expo Client requires at least v20.0.0. The author should update their experience to a newer Expo SDK version.
I then:
- Updated to Expo v20.0.0
- Handled all unmet dependencies
yarn cache cleanrm -rf node_modules/- Reinstalled local node modules
and I'm still getting the same error.
What do I need to do to get Simulator to recognize that I am using the correct version of Expo?
Current environment:
- Expo v20.0.0
- react-native v0.47.0
- Node v8.11.1
- Xcode v9.3
- Mac OS v10.13.4
app.json? - Pritish Vaidya"expo": "20.0.0"@PritishVaidya - cameck"sdkVersion": "20.0.0"from myapp.json. Adding it,rm-rf node_modules && yarn install && yarn run ios --reset-cachefixed that issue. Thanks! - cameck