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
For people still having problems with this. When directly coping the firebase walkthourgh website, the install string is:
pod `Firebase/Core`
While it should have been:
pod 'Firebase/Core'
No need for pod setup if this applies to you too.