Xcode版本7.3 (7D175) SwiftyDropbox 3.0.0
我正在遵循https://www.dropbox.com/developers/documentation/swift#install上的安装说明
platform :ios, '8.0'
use_frameworks!
pod 'SwiftyDropbox'$pod install结果
`[!] The dependency SwiftyDropbox is not used in any concrete target.`如果有任何建议,这是我第一次使用CocoaPods,它似乎是一个非常有用的库。
怀疑这与CocoaPods有关,而不是SwiftyDropbox。谢谢。
发布于 2016-06-30 19:40:49
在Podfile中,需要包括以下内容。
platform :ios, '8.0' use_frameworks! target 'foo' do pod 'SwiftyDropbox' end
https://stackoverflow.com/questions/38131600
复制相似问题