ios - Cannot install Firebase using cocoapods. It says "Unable to get local issuer certificate" -


any comments or suggestions? pod file looks this:

uncomment line define global platform project  platform :ios, '8.0'  uncomment line if you're using swift  use_frameworks!  target 'schedulebuilder'  pod 'swiftyjson', '~> 2.3'  pod 'firebase', '>= 2.5.0'  end 

the error when try install firebase cocoapods.

the solution remove , install curl again.

if you're using brew, it's just:

brew uninstall curl brew install curl brew link curl --force

or

finally, can solve on project folder:

echo insecure >> ~/.curlrc


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -