I had the same error. Once you install the pods, you'll see the following message.

[!] Please close any current Xcode sessions and use MyApp.xcworkspace for this project from now on.

I didn't notice this for the first time and was trying to build the project using the regular xcodeproj file. After I saw this message, I opened the right project and it worked fine.

Once you open this project you'll notice that you have two subprojects. One would be your project, and another would be the Pods project.


Framework Not Found

When using Pods, we usually face this issue.

There are two main reasons for this

  1. When we open the .xcodeproj file instead of .xcworkspace as mentioned by izaaz-yunus in this Answer

  2. When Build Active Architecture Only is set to Yes in Build Settings

    This applies to the projects target and also to all the targets in the pod project

Main Project Screenshot Set Build Active Architecture Only to No

Pod Project Screenshot enter image description here

  1. Select Build Settings (of main project, pod project both)
  2. Select each Target one by one
  3. Set Build Active Architectures to No for each target

Finally clean and rebuild your project.


In my case all integration are well-done and also did try so many time to remove and reinstall pod but did not get success.

Finally try with below step

Projetc->Manage Schemes -> Select check box "Pods-MyProjectName"

And get success.