I\'m following this tutorial, however when I run
pod install
in step 2 part 6 I get the error
[!] Unable to find a specific
This seemed to have worked for me:
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'WhatsOpen' do
pod 'GoogleMaps'
pod 'GooglePlacesAPI'
end
This was after trying Nilesh Jha's answer.
It also said
[!] GooglePlaces has been deprecated in favor of GooglePlacesAPI
So I replaced 'GooglePlaces' with 'GooglePlacesAPI' and it seems satisfied.