I have this in podfile:
pod \'Firebase/Core\'
pod \'Firebase/Messaging\'
but getting this error:
[!] Unable to find
Check if your podfile looks like this and then execute pod install
:
platform :ios, '10.0'
use_frameworks!
target '' do
# Firebase
pod 'Firebase'
pod 'Firebase/Core'
pod 'Firebase/Messaging'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end