Podfile 631 字节
platform :ios, '14.0'

target 'NumberCube' do
  use_frameworks!

  pod 'R.swift', '~> 7.8.0'
  pod 'CocoaLumberjack/Swift'
  pod 'Then', '~> 3.0.0'
  pod 'SnapKit', '~> 5.7.1'
  pod 'PinLayout', '~> 1.10.5'
  pod 'Toast-Swift', '~> 5.1.1'
  pod 'SwiftHEXColors'
end

install! 'cocoapods', :warn_for_unused_master_specs_repo => false

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 < 14.0
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
      end
    end
  end
end