简体   繁体   中英

CocoaPods - Unable to find a specification for

My Podfile looks like this:

    source 'https://github.com/CocoaPods/Specs.git'
--source= 'git@bitbucket.org:appstrakt/apps-tool-libraries-appletech-specs-private.git'
--source= 'git@bitbucket.org:appstrakt/apps-tool-libraries-appletech-specs-test.git'

target 'Test' do
platform :ios, '8.0'
use_frameworks!

# Fabric
pod 'Fabric'
pod 'Crashlytics'

# Appstrakt Pods
pod 'NovemberFiveApplication-iOS', '~> 2.0'
pod 'Dye', '~> 2.0'
pod 'APGoogleAnalytics', '~> 2.0'
pod 'APCrashlyticsAnalytics', '~> 2.0'
pod 'APLoggerServiceBasic', '~> 2.0'

# Dexter
pod 'Dexter', '~> 0.0.1'
pod 'DEXHTTPMonitorModule', '~> 0.0.1'

# 3rd Party Pods
pod 'JVFloatLabeledTextField', '~> 1.1'
pod 'Lockbox', '~> 1.4'
pod 'UICollectionViewLeftAlignedLayout'

pod 'Reveal-SDK'

end

post_install do |installer_representation|
    installer_representation.pods_project.targets.each do |target|

When I run 'pod install', I got an error:

Analyzing dependencies [!] Unable to find a specification for NovemberFiveApplication-iOS (~> 2.0)

You have either: * out-of-date source repos which you can update with pod repo update or with pod install --repo-update . * mistyped the name or version. * not added the source repo that hosts the Podspec to your Podfile.

NovemberFiveApplication-iOS is not a public CocoaPod. To install it you will need to add the repo: https://guides.cocoapods.org/making/private-cocoapods.html

November Five seem to be a business, with no open source repo. To use their SDK you will need to get the repo from them.

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