No such module ... in Xcode

Make sure you opened the .xcworkspace file in Xcode and not just the .xcodeproj file.


Comments from @l'L'l led me to the solution. I went to

build settings > frameworks search path

and set it to the following:

$(inherited) (non-recursive)
$(PROJECT_DIR)/build/Debug-iphoneos (non-recursive)
$(SRCROOT) (recursive)

It is now correctly finding the pod frameworks.


In Pod file

Uncomment below lines to define a global platform for your project

platform :ios, '10.0'

use_frameworks!

Now in xcode

a) Clean your project

b) Make sure that all your "Pods" > "Build Settings" > "Build Active Architecture Only" is set to "NO"

c) Now, build project