Audiokit 4.5.2 - 无法在终端中通过 cocoa pods 安装

Audiokit 4.5.2 - can't install via cocoa pods in Terminal

我的应用程序的部署目标当前设置为 Xcode 中的 9.2。我相信9.0应该是最低的。

然而,当尝试更新到 AudioKit 4.5.2(从 4.4)时 - 我在终端中收到以下错误...

⇒  pod install
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "AudioKit":
  In Podfile:
AudioKit (~> 4.5.2)

Specs satisfying the `AudioKit (~> 4.5.2)` dependency were found, 
but they required a higher minimum deployment target.

我该怎么办?非常感谢。

您的问题的答案已经给您了。

Specs satisfying the AudioKit (~> 4.5.2) dependency were found, but they required a higher minimum deployment target.

这实际上意味着您正在尝试更新到 v4.5.2 但该特定版本需要更高的最低部署目标, 应该高于您的 iOS 9.2.

What should I do? Many thanks.

您有多种选择:

  1. 目标 iOS 10(或至少 v4.5.2 的部署目标),如果您的经理或团队领导或您同意的话。
  2. 在你的 podfile 中明确定位 AudioKit 的低版本,就像你提到的那样:pod 'AudioKit', '4.4'.

更新:

我做了一个示例 Xcode 项目,发现他们还没有发布 v4.5.2 用于他们的 cocoapods,好吧,据我所知。所以这应该在你的 podfile insted:

pod 'AudioKit', '~> 4.0'

并确保你的 podfile 中也有这一行,针对你的 iOS 版本:

platform :ios, '10.0'

希望对您有所帮助!