Cocoapods安装错误 - 无法找到pod的规范

时间:2017-08-03 03:44:43

标签: ios objective-c cocoapods

我正在尝试从终端安装两个pod到我的Xcode项目。我最初安装了一个名为PRAugmentedReality的pod,它工作正常。然后我尝试添加pod BFTransmitter,并开始收到以下错误消息:

[!] Unable to find a specification for 'PRAugmentedReality'

如果我删除PRAugmentedReality pod并仅使用BFTransmitter安装,它也可以正常工作。所以基本上我可以自己安装,但不能一起安装。

我的podfile如下所示:

#source for BFTransmitter
source 'https://bitbucket.org/bridgefy/bridgefypods.git'

target 'FWF' do

    pod 'BFTransmitter'
    pod 'PRAugmentedReality'

    target 'FWFTests' do
        inherit! :search_paths
    end

end

我已尝试repo remove master pod setup然后pod install,但仍然没有运气。

1 个答案:

答案 0 :(得分:3)

添加源以安装两个pod一起检查我的podFile并在我的目标之前添加源代码

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://bitbucket.org/bridgefy/bridgefypods.git'

target 'pod' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

pod 'BFTransmitter'
pod 'PRAugmentedReality'

  # Pods for pod

end

结果

enter image description here