'Framework not found' in Xcode

Solution 1:

Try deleting Bolts.framework from linked framework and re-add it. Also, in your Framework Search Path keep path until Bolts.framework like $(PROJECT_DIR)/Bolts if it is inside Bolts folder at your project directory path.

Solution 2:

I'm pretty new to iOS development. Apparently this problem for me was a result of opening the .xcodeproj Xcode project instead of the .xcworkspace Xcode workspace. I opened the workspace instead and the error has gone away.

Solution 3:

error: Framework not found

If you use CocoaPods try to run:

pod deintegrate
pod update

Also use .xcworkspace instead of .xcodeproj

Solution 4:

delete all frameworks from Embedded Binaries and re-add it

Solution 5:

  1. Delete the framework link from the Xcode project setting.
  2. Move the framework to the Project Folder.
  3. Re-add the framework in the Xcode project setting.
  4. clean the project and re-compile it.