I'm using XCODE 7.1. Trying to add this library to my existing Swift project, I've made the following pod file:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'PusherSwift'
Since installing this, my project throws the following error when trying to build:
ld: framework not found CryptoSwift clang: error: linker command failed with exit code 1 (use -v to see invocation)
I can't import the required library. and I also have a red (missing) framework named Pods_myProject.framework
How can I fix it?