简体   繁体   中英

Cocoapods install error- Unable to find a specification for pod

I am trying to install two pods to my Xcode project from terminal. I initially had installed a pod called PRAugmentedReality , and it worked fine. Then I tried adding the pod BFTransmitter , and started getting the following error message:

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

If I remove the PRAugmentedReality pod and install with just BFTransmitter, it also works fine. So basically I am able to install either on their own, but not together.

My podfile looks like this:

#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

I have tried repo remove master pod setup and then pod install , still no luck.

just add source to install both pods together check my podFile and add sourced before your target as I did

# 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

Result

在此输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM