【发布时间】:2016-06-03 02:38:36
【问题描述】:
我正在按照适用于 iOS 网页的谷歌日历 API 上的说明进行操作。 见链接。 https://developers.google.com/google-apps/calendar/quickstart/ios?ver=objc#step_2_prepare_the_workspace
当我遵循这些终端命令时
cat << EOF > Podfile &&
platform :ios, '7.0'
pod 'GoogleAPIClient/Calendar', '~> 1.0.2'
pod 'GTMOAuth2', '~> 1.1.0'
EOF
pod install &&
open QuickstartApp.xcworkspace
我收到以下错误
[!] The dependency `GoogleAPIClient/Calendar (~> 1.0.2)` is not used in any concrete target.
The dependency `GTMOAuth2 (~> 1.1.0)` is not used in any concrete target.
我不确定为什么会这样。我的项目名称与 QuickstartApp 不同,但我认为这不会导致错误。
【问题讨论】:
-
我认为 Google 需要更新他们的文档。
标签: ios objective-c cocoapods google-calendar-api