skip to Main Content

I’m trying to build my React Native with Expo app on XCode. Everything seems to work with Pods but I’v got this error:

No such module "ExpoModulesCore" error

Does anyone have any idea how to resolve it?

expo version : 51.0.13
expo-modules-core version : 1.12.25
Xcode version : 16.0

I added use_expo_modules! in Podfile but no success 🙁

2

Answers


  1. I have this problem too and use this and it working for me, you can try it :
    https://github.com/expo/expo/issues/18150

    Login or Signup to reply.
    1. Go for ‘cd your/project/path’
    2. npm install expo-modules-core
    3. npx expo prebuild –clean
    4. cd ios
    5. pod deintegrate
    6. pod cache clean –all
    7. rm -rf ~/Library/Developer/Xcode/DerivedData/*
    8. pod install
    9. Open the xcode project by navigating its ios folder, and tapping ‘.xcworkspace’ file, NOT ‘.xcodeproj’ file
    10. Select Any IOS Device (arm64)
    11. Try to build or archive via product tab
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search