I'm trying to fix this issue for hours, but it still persists. Tried everything on the forums, nothing helped.
I'm using Cocoapods latest version 1.2.0.beta.1
When I try to build the project, it gives me this:

9 Answers
Here is what I did to remove this error. Please try with below:
- Click on main project file.
- Goto the Build Phases.
- Click on run Script and delete any given path in it so that it does not try to find some framework that has been deleted by you.
I had this problem when I used to check the crash Analytics with the different frameworks like "Test Fairy".
Hope this works. :)
1 Comment
p0ny
Thank you! Was removing firebase from an old app and this was it
Install the pods once again and run the project. Using command:
pod install
1 Comment
Jeff Bootsholz
just applied , still failed to build
Here is what I did when I got this:
- Used this site to completely remove All Versions of cocoapods: https://superuser.com/questions/686317/how-to-fully-uninstall-the-cocoapods-from-the-mac-machine
- Re-installed current stable version of cocoapods (v1.1.1 for me)
- Deleted podlock and pods directory
- Deleted old .xcworkspace file (this was key for me).
- Did "pod install"
- Opened xcode and cleaned project and deleted derivedData.
Comments
Just go to the Terminal and find your file and type in "pod install", that will solve the problem.
1 Comment
AfroThundr
This solution has already been posted. Also, one-liners are generally not considered very good answers.