为了通过CocoaPods安装AudioKit 4.1,我在终端上执行了pod 'AudioKit', '~> 4.1',但我得到了一个错误:
[!] Unable to satisfy the following requirements:
- AudioKit (~> 4.1) required by Podfile
None of your spec sources contain a spec satisfying the dependency: AudioKit (~> 4.1).怎么了?
我用的是Swift 4和Xcode 9.2。
发布于 2018-02-14 09:02:23
现在应该可以解决这个问题了!
AudioKit (4.1) successfully published
February 13th, 17:01
https://cocoapods.org/pods/AudioKit
Tell your friends!发布于 2018-02-14 00:34:58
目前,AudioKit 4.0.4是您可以直接从CocoaPods安装的最新版本。只需移除依赖项中的箭头或将其替换为~> 4.0.4即可。
或者,您可以将依赖项指向GitHub,以便能够使用4.1:
pod 'AudioKit', :git => 'https://github.com/AudioKit/AudioKit.git'https://stackoverflow.com/questions/48770633
复制相似问题