Project with path ':unimodules-core' could not be found in project ':expo-application'

I’ve been trying to build our App using EAS but getting the same error in the title
this is my package.json file, i can’t find expo-application or how to resolve this issue
{

“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/vector-icons": "^12.0.0",

"@react-native-async-storage/async-storage": "~1.15.0",

"@react-native-firebase/analytics": "12.9.0",

"@react-native-firebase/app": "12.9.0",

"@react-native-firebase/in-app-messaging": "12.9.0",

"eas-cli": "^0.34.1",

"@react-navigation/bottom-tabs": "*",

"@react-navigation/drawer": "*",

"@react-navigation/native": "^6.0.2",

"@react-navigation/stack": "^6.0.7",

"@reduxjs/toolkit": "*",

"axios": "*",

"base-64": "*",

"expo": "^43.0.1",

"expo-asset": "~8.3.3",

"expo-av": "~9.2.3",

"expo-constants": "~11.0.2",

"expo-file-system": "~11.1.3",

"expo-font": "~9.2.1",

"expo-image-manipulator": "~9.2.2",

"expo-image-picker": "~10.2.3",

"expo-keep-awake": "~9.2.0",

"expo-linear-gradient": "~9.2.0",

"expo-notifications": "~0.12.3",

"expo-status-bar": "~1.0.4",

"firebase": "8.2.3",

"formik": "*",

"i18next": "^19.0.0",

"lodash": "*",

"lottie-ios": "3.1.8",

"lottie-react-native": "4.0.2",

"moment": "*",

"native-base": "*",

"prop-types": "*",

"qs": "*",

"react": "16.13.1",

"react-dom": "16.13.1",

"react-i18next": "*",

"react-is": "^16.8.0",

"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",

"react-native-animatable": "*",

"react-native-bouncy-checkbox": "^2.1.4",

"react-native-dialog": "*",

"react-native-dynamic-vector-icons": "^0.2.1",

"react-native-elements": "^3.4.2",

"react-native-fast-image": "*",

"react-native-flash-message": "*",

"react-native-gesture-handler": "~1.10.2",

"react-native-google-places-autocomplete": "^2.4.1",

"react-native-keyboard-aware-scroll-view": "*",

"react-native-loading-spinner-overlay": "*",

"react-native-modal": "*",

"react-native-modalize": "*",

"react-native-paper": "*",

"react-native-paystack-popup": "*",

"react-native-paystack-webview": "*",

"react-native-progress-circle": "*",

"react-native-reanimated": "~2.2.0",

"react-native-safe-area-context": "3.2.0",

"react-native-screens": "~3.4.0",

"react-native-segmented-control-tab": "*",

"react-native-shadow": "*",

"react-native-shared-element": "0.7.0",

"react-native-svg": "12.1.1",

"react-native-swipe-list-view": "*",

"react-native-swipeout": "*",

"react-native-swiper": "*",

"react-native-toast-message": "*",

"react-native-touchable-scale": "*",

"react-native-vector-icons": "*",

"react-native-video": "*",

"react-native-web": "~0.13.12",

"react-native-bottom-search-bar": "0.1.3",

"react-native-webview": "11.6.2",

"react-navigation-shared-element": "*",

"react-redux": "^7.2.5",

"react-sweet-progress": "*",

"reanimated-bottom-sheet": "^1.0.0-alpha.22",

"redux-logger": "*",

"styled-components": "*",

"styled-system": "*",

"tslib": "^2.3.1",

"validator": "*",

"yup": "*",

"@freakycoder/react-native-helpers":"0.0.21"

},

“devDependencies”: {

"@babel/core": "^7.12.9",

"@babel/preset-flow": "^7.16.0",

"@babel/preset-typescript": "^7.16.0"

},

“private”: true

}

  1. this is unrelated to the issue you’re seeing but eas-cli shouldn’t be installed as a project dependency, it should be a global package or used via npx
  2. run expo doctor to ensure versions are correct
  3. run yarn why expo-application (or npx npm-why expo-application) to see where the dependency is coming from. remove or upgrade that dependency
1 Like

thanks… worked for me