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
have you tried to add
frameworks use_frameworks!
after target 'RandomName' line
and adding
platform :ios, '9.0'
before target ....