使用CocoaPods在iOS中安装Google Analytics时出错

时间:2015-07-31 10:56:59

标签: ios google-analytics cocoapods

我试图通过可可豆荚安装谷歌分析,但它不可能,我总是收到这个错误:

Resolving dependencies of `Podfile`
[!] Unable to satisfy the following requirements:

- `Google/Analytics (~> 1.0.0)` required by `Podfile`

/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/resolver.rb:388:in `handle_resolver_error'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/resolver.rb:69:in `rescue in resolve'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/resolver.rb:56:in `resolve'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer/analyzer.rb:535:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/user_interface.rb:59:in `section'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer/analyzer.rb:533:in `resolve_dependencies'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer/analyzer.rb:70:in `analyze'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer.rb:210:in `analyze'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer.rb:133:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/user_interface.rb:59:in `section'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer.rb:132:in `resolve_dependencies'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/installer.rb:104:in `install!'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/command/project.rb:71:in `run_install_with_update'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/command/project.rb:101:in `run'
/Library/Ruby/Gems/2.0.0/gems/claide-0.9.1/lib/claide/command.rb:312:in `run'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/lib/cocoapods/command.rb:48:in `run'
/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.38.2/bin/pod:44:in `<top (required)>'
/usr/bin/pod:23:in `load'
/usr/bin/pod:23:in `<main>'

我的podfile已包含不同的pod和私有pod:

platform :ios, "6.0"

source 'git@github.com:MyCompany/myCompany-cocoaPods-ios.git'
source 'https://github.com/CocoaPods/Specs.git'

target "MyTarget" do

pod 'OpenWeatherMapAPI', '~> 0.0.5'
pod 'INCore', '~>1.1.0'
pod 'AFNetworking', '>= 1.3.1'
pod 'Google/Analytics', '~> 1.0.0'

end

我能尝试什么想法?感谢

2 个答案:

答案 0 :(得分:1)

尝试在项目构建设置中使用iOS 7.0作为部署目标。

答案 1 :(得分:0)

将podfile中的平台更改为ios 7.0或更高版本:

platform :ios, "7.0"

如果您使用的是iOS 6或更早版本,则可以使用此窗格:

pod 'GoogleAnalytics', '3.13.0'