Hi, I know this is a known issue, but never seems to be posted with SDK 33 and I tried every possible solution from previous versions but none of them worked. Yesterday I updated to version 33 and added web support. I managed to make it work on web and it works for a while but then suddenly it started giving this error.
This is the error screen:
app.json file:
{
"expo": {
"name": "App",
"slug": "app
"privacy": "public",
"sdkVersion": "33.0.0",
"platforms": ["ios", "android", "web"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icons/icon-color.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.agrorobotica.agrorobotica",
"adaptiveIcon": {
"backgroundColor": "#000000"
}
},
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#c4e134"
},
"extra": {
"api": "https://api.endpoint.com"
},
"packagerOpts": {
"sourceExts": ["js", "ts", "tsx"]
}
}
}
while this is my package.json:
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^10.0.2",
"deep-equal": "^1.0.1",
"expo": "^33.0.7",
"expo-constants": "^5.0.1",
"expo-font": "^5.0.1",
"expo-localization": "^5.0.1",
"expo-permissions": "^5.0.1",
"i18n-js": "^3.3.0",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-google-maps": "^9.4.5",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-chart-kit": "^3.0.0",
"react-native-elements": "^1.1.0",
"react-native-image-pan-zoom": "^2.1.11",
"react-native-progress-circle": "^2.0.1",
"react-native-swipe-list-view": "^1.5.6",
"react-native-swiper": "^1.5.14",
"react-native-touchable-scale": "^2.0.0",
"react-native-web": "^0.11.4",
"react-native-web-maps": "^0.2.0",
"react-navigation": "^3.11.0",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.4",
"set-cookie-parser": "^2.3.5"
},
"devDependencies": {
"babel-preset-expo": "^5.2.0",
"jest-expo": "^33.0.0"
},
"private": true,
"prettier": {
"arrowParens": "avoid",
"prettier.bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 120,
"semi": true,
"trailingComma": "none",
"tabWidth": 2,
"singleQuote": false,
"prettier.useTabs": true
}
}
Tried really everything (removed reinstalled, reinstalled mobile version from store and from cli, updated expo-cli, remove and reinstalled expo-cli), somebody can help me with this?