I\'m trying to install Firebase via CocoaPods for my Objective-C iOS Application. My Podfile is as follows:
target \'RandomName\' do
pod \'Firebase/Core\'
po
I had the same error, and my solution was to downgrade Cocoapods
to 1.0.0
, because Cocoapods
1.0.1
didn't work as I expected. Everything works great now!
sudo gem uninstall cocoapods -v 1.0.1
sudo gem install cocoapods -v 1.0.0
My Podfile
:
platform :ios, '8.0'
target 'XXX' do
pod 'Firebase/Auth'
pod 'Firebase/Database'
end
The Same problem occurred while on pod install command.
Please relaunch terminal and navigate to your Xcode project then
simply fire same pod install command. 'Firebase/Database' will installed successfully :)
Update Git and Cocoapods to the last version:
Git: $ brew update && brew upgrade
Cocoapods: $ pod repo update