FirebaseDemo
FirebaseDemo copied to clipboard
Can't install Firebase framework using pod
You need to specify the scope of the Podfile like below, and then pod install
target 'FirebaseJokes' do
platform :ios, '8.0'
use_frameworks!
pod 'Firebase', '>= 2.5.0'
end
@PennyYip Your solution works!