简体   繁体   中英

GoogleMaps SDK ios install with Cocoapod error

I'm recently learn iOS and I want to install the GoogleMap SDK for iOS in my project.

But when I installed with pod install it got an error say that the 'GoogleMaps' doesn't have concrete dependency ... or some thing like that.

I did as the instruction on the GoogleMapsAPI web source and this is my Podfile

'https://github.com/CocoaPods/Specs.git' pod 'GoogleMaps'

Please tell me where do I did wrong. Thanks

You have to specify a target for each pod.

eg if before you had your Podfile written like this:

pod 'GoogleMaps'

just change it to

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'

target "TargetName" do
   pod 'GoogleMaps'
end

When you are working with latest pod you need to write Target in Pod file

Like below.

Currently your pod file looking like

pod "YOUR_POD"

Change To

target "Your_Target_Name" do
     pod "YOUR_POD"
end

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM