Expo have some issue connecting real device and show Your project is in SDK version >= 33.0.0, but the expo package version seems to be older.

Your project is in SDK version >= 33.0.0, but the expo package version seems to be older.
Starting Metro Bundler
… after this when i want to try open project in my real device expo shows me “something get wrong”

Hi

What happened before you got that error?

SDK 33 is pretty old and no longer supported by Expo Go.

Are you following a tutorial?

I am getting this same error after upgrading to SDK 41.0. I followed the instructions to the “T”.

Creating a new Expo project yields the same error.

npm list -g --depth=0 shows:
±- @expo/ngrok@2.4.3
±- expo-cli@4.4.4
`-- npm@6.14.12

package.json & app.json:

package.json:
{
“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”
},
“dependencies”: {
“expo”: “~41.0.1”,
“expo-status-bar”: “~1.0.4”,
“react”: “16.13.1”,
“react-dom”: “16.13.1”,
“react-native”: “https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz”,
“react-native-web”: “~0.13.12”
},
“devDependencies”: {
@babel/core”: “^7.9.0”
},
“private”: true
}

app.json:
{
“expo”: {
“name”: “ItemsList”,
“slug”: “ItemsList”,
“version”: “1.0.0”,
“orientation”: “portrait”,
“icon”: “./assets/icon.png”,
“splash”: {
“image”: “./assets/splash.png”,
“resizeMode”: “contain”,
“backgroundColor”: “#ffffff
},
“updates”: {
“fallbackToCacheTimeout”: 0
},
“assetBundlePatterns”: [
“**/*”
],
“ios”: {
“supportsTablet”: true
},
“android”: {
“adaptiveIcon”: {
“foregroundImage”: “./assets/adaptive-icon.png”,
“backgroundColor”: “#FFFFFF
}
},
“web”: {
“favicon”: “./assets/favicon.png”
}
}
}

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