Reputation: 197
Project config:
Xcode @ 13.4.1 (13F100)
cocoapods @ 1.11.3
React Native @ 0.64.0
iOS target @ 11.0
I can't build this mobile project and XCode says there's file missing.
fatal error: module map file '/Users/myself/Library/Developer/Xcode/DerivedData/myproject/Products/Debug-iphonesimulator/NextLevelSessionExporter/NextLevelSessionExporter.modulemap' not found
When I run pod install
, says its has run without errors, but checking into Xcode/DerivedData/myproject/Build/Products/Debug-iphonesimulator
and it does not show all the dependencies folder as it should.
I tried
~/.cocoapods
folderios/Pods/
folder and Podfile.lock
DerivedData
folder completelyNo progress so far.
Any guidance will be welcome.
Upvotes: 0
Views: 1452
Reputation: 2366
Follow the below steps:
Delete cocoapods
folder, ios/Pods/
folder and Podfile.lock
file
Deleting DerivedData
folder
delete node_modules
folder
Run command pod install
or pod repo update
Hope it will help you!
Upvotes: 1