美文网首页
CocoaPods最新版本问题

CocoaPods最新版本问题

作者: 菲特峰 | 来源:发表于2020-07-19 16:28 被阅读0次

    以下是我的podfile文件

    # Uncomment the next line to define a global platform for your project
    source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
    platform :ios, '9.0'
    
    target 'BasicSwiftDemo' do
      # Comment the next line if you don't want to use dynamic frameworks
      use_frameworks!
    
      # Pods for BasicSwiftDemo
    
     pod 'RxSwift', '~> 5.0'
     pod 'RxCocoa', '~> 5.0'
     pod 'SVProgressHUD','~> 2.2.5'
     pod 'SnapKit', '~> 4.2.0'
     pod 'DNSPageView','~> 1.2.1'
     pod 'Kingfisher' ,'~> 4.10.1'
     pod 'SwiftMessages','~> 7.0.1'
     pod 'SwiftyJSON','~> 5.0.0'
     pod 'HandyJSON','~> 5.0.1'
     pod 'Alamofire','~> 4.9.1'
     pod 'IQKeyboardManagerSwift','~> 6.5.4'
     pod 'SwifterSwift','~> 5.1.0'
    
     pod 'Moya','~> 13.0.1'
     #pod "CDAlertView"
     pod 'ReachabilitySwift','~> 5.0.0'
    
     pod 'LYEmptyView'
     pod 'MJRefresh','~> 3.2.2'
     pod 'SDCycleScrollView','~> 1.80'
     pod 'Toast','~> 4.0.0'
     pod 'MBProgressHUD','~> 1.1.0'
    
    
      target 'BasicSwiftDemoTests' do
        inherit! :search_paths
        # Pods for testing
        pod 'RxBlocking', '~> 5.0'
        pod 'RxTest', '~> 5.0'
      end
    
      target 'BasicSwiftDemoUITests' do
        # Pods for testing
      end
    
    end
    
    

    我想很多小伙伴会跟我一样遇到因为最新的CocoaPods导致的卡住问题
    解决方案:https://www.colabug.com/2019/1225/6769937/amp/

    相关文章

      网友评论

          本文标题:CocoaPods最新版本问题

          本文链接:https://www.haomeiwen.com/subject/nvllkktx.html