Podfile 907 字节
platform :ios, '13.0'

target 'AoleiSports' do
  use_frameworks!

  pod 'Alamofire', '~> 5.9.1'
  pod 'Moya/RxSwift', '~> 15.0'
  pod 'R.swift', '~> 7.3.2'
  pod 'CocoaLumberjack/Swift'
  pod 'SnapKit', '~> 5.7.1'
  pod 'RxSwift', '~> 6.7.1'
  pod 'RxCocoa', '~> 6.7.1',:inhibit_warnings => true
  pod 'SwiftyJSON', '~> 5.0.2'
  pod 'NVActivityIndicatorView', '~> 5.2.0'
  pod 'Toast-Swift', '~> 5.1.1'
  pod 'ObjectMapper', '~> 4.4.2'
  pod 'RxGesture', '~> 4.0.4'
  pod 'ESPullToRefresh', '~> 2.9.3'
  pod 'SwiftyUserDefaults', '~> 5.3.0'
  pod 'Kingfisher', '~> 7.12.0'
  pod 'DGCharts', '~> 5.1.0'
  
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 13.0
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
      end
    end
  end
end