如何使用 cocoa pods 更新 google 地图?

how to update google maps using cocoa pods.?

大家好,我正在使用 google 地图和其他图书馆。我使用 cocoapods 安装每个库,但是当我安装库并使用命令 pod install 更新时。我收到此错误:

Analyzing dependencies
[!] Unable to satisfy the following requirements:

- `GoogleMaps` required by `Podfile`
- `GoogleMaps (= 1.13.0)` required by `Podfile.lock`

Specs satisfying the `GoogleMaps` dependency were found, but they required a higher minimum deployment target.

Specs satisfying the `GoogleMaps (= 1.13.0)` dependency were found, but they required a higher minimum deployment target.

这是我的 pod 文件:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
pod 'GoogleMaps'
pod 'AFNetworking', '~> 3.0'
pod ‘Facebook-iOS-SDK’
pod 'TwitterKit'
platform :ios, '6.0'
pod 'REFrostedViewController', '~> 2.4'

像这样更改您的播客文件:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'GoogleMaps'
pod 'AFNetworking', '~> 3.0'
pod 'Facebook-iOS-SDK'
pod 'TwitterKit'
pod 'REFrostedViewController', '~> 2.4'

看起来像平台:ios 由于重新定义

而从 8 更改为 6