Xcode is not finding EstimoteSDK when I installed via Cocoapods using frameworks

I have the SDK installed via Cocoapods but my project still can’t find it.

I’m using the “use_frameworks!” flag in my podfile which means I do not need to use a bridge header… however I’ve still tried using the bridge header to no avail.

I just upgraded to Cocoapods 1.0.0 and ran pod install again and still doesn’t work

my info:

Xcode 7.2.1
Cocoapods 1.0.0

in my podfile: (this is not an exact copy of my podfile, just excerpts of relevant items)

platform :ios, '8.0'
use_frameworks!
pod 'EstimoteSDK', '~> 4.3'

I’ve also cleaned and rebuilt my project several times, especially after the cocoapod upgrade and reinstalls

Update
So apparently I do still need to use a bridge-header. I just had to run the rebuild after setting up and now it’s finding the SDK. Weird.

1 Like