I am working on a Swift project with cocoapods. Here is Podfile:
pod \'GPUImage\', \'~> 0.1.4\'
After i run pod
I had the same issue with the following library versions:
Finally I solved this issue by the following steps:
First step:
Second Step:
cd ~/Library/Developer/Xcode/DerivedData rm -rf Build/* see below if you have a customized build locationrm -rf ModuleCache/* Third Step:
If you have defined a custom build location:
- Go with Finder or the Terminal to the location of the build files. The location for these files is defined in Xcode. To check where these files are:
- Open Xcode
- Go to
Settings -> Locations -> Derived Data- Go to that location and delete the
Buildfolder
Then everything work well.
Hope this can help somebody in the future.