The EXPO sdk requires expo to run. it appears the native expo modules are unavailable

Steps that produced the error

expo eject
cd ios
pod install
cd …
react-native run-ios

Expo CLI 3.11.3 environment info:
System:
OS: macOS 10.14.6
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 10.16.3 - /usr/local/bin/node
Yarn: 1.21.0 - /usr/local/bin/yarn
npm: 6.13.2 - /usr/local/bin/npm
IDEs:
Android Studio: 3.5 AI-191.8026.42.35.5791312
Xcode: 11.3/11C29 - /usr/bin/xcodebuild
npmPackages:
expo: ^35.0.0 => 35.0.1
react: 16.8.3 => 16.8.3
react-native: 0.59.10 => 0.59.10
react-navigation: ^3.11.0 => 3.13.0
npmGlobalPackages:
expo-cli: 3.11.3

package.json
{
“expo”: {
“name”: “XX”,
“icon”: “./assets/XX.png”,
“version”: “1.0.0”,
“slug”: “XX”,
“sdkVersion”: “XX.0.0”,
“ios”: {
“bundleIdentifier”: “XX”
},
“android”: {
“package”: “XX”
}
},
“scripts”: {
“start”: “react-native start”,
“android”: “react-native run-android”,
“ios”: “react-native run-ios”,
“web”: “expo start --web”,
“postinstall”: “jetify && jetify && jetify && jetify && jetify && jetify && jetify && jetify && jetify && jetify”
},
“dependencies”: {
“expo”: “^35.0.0”,
“react”: “16.8.3”,
“react-dom”: “16.8.3”,
“react-native”: “0.59.10”,
“react-native-gesture-handler”: “~1.3.0”,
“react-native-reanimated”: “~1.2.0”,
“react-native-screens”: “~1.0.0-alpha.23”,
“react-native-unimodules”: “0.6.0”,
“react-native-web”: “^0.11.7”,
“axios”: “^0.19.0”,
“expo-av”: “~7.0.1”,
“expo-cli”: “^3.1.2”,
“jetifier”: “^1.6.5”,
“jwt-decode”: “^2.2.0”,
“native-base”: “^2.13.8”,
“react-native-animatable”: “^1.3.2”,
“react-native-app-intro-slider”: “^3.0.0”,
“react-native-cli”: “^2.0.1”,
“react-native-elements”: “^1.2.6”,
“react-native-keyboard-aware-scroll-view”: “^0.9.1”,
“react-native-ratings”: “^6.5.0”,
“react-native-youtube”: “^2.0.0-beta.2”,
“react-navigation”: “^3.11.0”,
“react-navigation-transitions”: “^1.0.12”,
“react-redux”: “^7.1.0”,
“redux”: “^4.0.4”,
“redux-devtools-extension”: “^2.13.8”,
“redux-persist”: “^6.0.0”,
“redux-promise”: “^0.6.0”,
“redux-thunk”: “^2.3.0”,
“universal-panresponder”: “^0.6.5”
},
“devDependencies”: {
@babel/core”: “^7.0.0”,
“babel-jest”: “24.1.0”,
“jest”: “24.1.0”,
“jetifier”: “^1.6.4”,
“metro-react-native-babel-preset”: “0.54.0”,
“react-test-renderer”: “16.8.3”,
“babel-preset-expo”: “^7.0.0”,
“eslint”: “^6.6.0”,
“eslint-plugin-react”: “^7.16.0”,
“redux-devtools”: “^3.5.0”
},
“private”: true,
“rnpm”: {
“assets”: [
“./assets/fonts/”
]
}
}

So currently I can’t run my app as a native react-native ios, also the same error while running from Xcode

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