I'm trying to setup a new iphone app to play around with Firebase. I'm trying to use Cocoapods to import it, but I keep getting a
'No such module' error
The Firebase files are in the pods directory, but Xcode can't find them.
This is my Podfile:
platform :ios, '8.0'
use_frameworks!
target 'MyProj' do
pod 'Firebase', '>= 2.4.3'
pod 'Alamofire', '2.0.2'
end
target 'MyProjTests' do
end
target 'MyProjUITests' do
end
This is a basic hello world app, and the only code I have added is:
'import Firebase'
'import Alamofire'
I run 'pod install' with xcode closed. I launch the app with .xcworkspace
There is no Pods.xcconfig file.
Thanks!