Upgraded to SDK 34 and now I'm down :-/

After upgrading to SDK 34 I’ve been down with this message:

Unable to resolve “./Google” from “node_modules\expo\build\ExpoLazy.js”

Anyone knows how to get arround it?

Best …,
Andy

Could you share your package.json and app.json files? I haven’t been able to get this error on any of my SDK 34 projects

{
“expo”: {
“sdkVersion”: “34.0.0”,
}
}

{
“main”: “node_modules/expo/AppEntry.js”,
“scripts”: {
“start”: “expo start”,
“android”: “expo start --android”,
“ios”: “expo start --ios”,
“web”: “expo start --web”,
“eject”: “expo eject”,
“test”: “jest --watchAll”
},
“jest”: {
“preset”: “jest-expo”
},
“dependencies”: {
@expo/samples”: “~3.0.0”,
@expo/vector-icons”: “^10.0.2”,
“expo”: “^34.0.1”,
“expo-asset”: “^6.0.0”,
“expo-constants”: “^6.0.0”,
“expo-font”: “^6.0.1”,
“expo-image-manipulator”: “^6.0.0”,
“expo-image-picker”: “^6.0.0”,
“expo-intent-launcher”: “^6.0.0”,
“expo-keep-awake”: “^6.0.0”,
“expo-location”: “^6.0.0”,
“expo-web-browser”: “^6.0.0”,
“react”: “16.8.3”,
“react-dom”: “^16.8.6”,
“react-native”: “https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz”,
“react-native-elements”: “^1.1.0”,
“react-native-maps”: “^0.24.2”,
“react-native-unimodules”: “^0.4.1”,
“react-native-web”: “^0.11.4”,
“react-navigation”: “^3.11.0”
},
“devDependencies”: {
“babel-preset-expo”: “^5.1.0”,
“jest-expo”: “^33.0.0”
},
“private”: true
}

It seems like it does’nt have all the new packages. Complaining about not having:

expo-payments-stripe
lottie-react-native
react-native-gesture-handler
expo-sensors

And I think those are new. I upgraded from SDK 33. Did’nt install the new SDK from new.

Can you try running expo install react-native-gesture-handler and the other necessary installs (you can find them on the respective API’s page)

I did install all those and now I’m stuck at a new error:

Unable to resolve “./Animated” from “node_modules\expo\build\DangerZone.js”

During update I deleted the node_modules folder and did a npm install after updating both Node.js and Expo-CLI

Hm, this doesn’t happen on a blank SDK 34 project does it?

Where do you use Animated in your project?

I think I might have a MapView that uses animation

Continuing this convo here, now

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.