我正在尝试从终端安装两个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
,但仍然没有运气。
答案 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
结果