- XCode 7.2.1
- Swift 2
- CocoaPods 0.39.0
Podfile:
platform :ios, '8.0'
use_frameworks!
target 'vent-ios-client' do
pod 'TwilioSDK', ' ~> 1.2.0'
end
According to this and this I don't need to create a Bridging-Header.h file or tweak my header search paths if I use use_frameworks!
. I should just be able to import the pod by it's name and it should work.
But all of the following result in "No such module" errors:
import TwilioSDK
import TCDevice
import TCDevice.h
import TwilioSDK/TCDevice
import TwilioSDK/TCDevice.h
Here is what the TwilioSDK file structure looks like:
I am loading my project's .xcworkspace file. And pod install
completed successfully.