between 0 and 1

[xcode] missing "swiftshims" or "Missing Required Modules" when import a modular framework or "modulemap not found" 본문

Software Development Engineering/XCode (iOS & Swift)

[xcode] missing "swiftshims" or "Missing Required Modules" when import a modular framework or "modulemap not found"

devxpert.yoon 2020. 12. 9. 05:14
728x90
반응형

the simplest way is clean project, remove cached data and reinstall modules.

 

In my case, This helped to solve the issues.

Xcode clean project in Xcode  (Menu -> Product -> Clean Build Folder)
Terminal remove cached data rm -rf ~/Library/Developer/Xcode/DerivedData/
rm -rf ~/Library/Caches/CocoaPods/
reinstall modules pod deintegrate
pod update

 

 

728x90
반응형