2017-08-17 65 views
0

我是CocoaPods的新手。我剛剛創建了一個Github項目,並希望將其包含在我的Pod中。它給我一個錯誤:CocoaPods:[!]無法找到'Surge4Swift3'的規範

[!] Unable to find a specification for 'Surge4Swift3Plus'.

我已經試過:

pod repo remove master 
pod setup 
pod install --verbose 

這裏是我的Podfile:

target 'MyApp' do 
    use_frameworks! 

     pod 'Firebase/Core' 
     pod 'Firebase/Auth' 
     pod 'Firebase/Database' 

     pod 'GeoFire', :git => 'https://github.com/firebase/geofire-objc.git' 
     pod 'Surge4Swift3Plus', :git => 'https://github.com/dmr07/Surge4Swift3Plus.git' 
end 

我需要做的Github上項目的一些特別的東西?

回答

相關問題