Error running pod install with swift

后端 未结 5 1409
逝去的感伤
逝去的感伤 2020-12-13 06:40

I followed the instruction from Cocoapods.

Below is my Podfile:

platform :ios, \'8.2\'

pod \'SwiftyJSON\', \'~> 2.1\'
pod \'SwiftSpinner\', \'~&         


        
5条回答
  •  情深已故
    2020-12-13 06:58

    the solution is very simple. You only have to add these lines to your pod file:

    target 'PassDTAFirebase' do
    
      inherit! :complete
    
        # Here your pods
    
      use_frameworks! 
    
    end
    

提交回复
热议问题