source 'https://github.com/CocoaPods/Specs.git' # 所支持的iOS系统版本 platform:ios,'13.0' use_frameworks! target 'ADHTuanCan' do # 规避第三方库的警告 inhibit_all_warnings! pod 'RxSwift' pod 'RxCocoa' #pod 'RxRelay' pod 'SwiftDate' pod 'Alamofire' pod 'RxAlamofire' pod 'HandyJSON' #pod 'Stripe' pod 'RichTextView' pod 'StripePaymentSheet' pod 'SDWebImage' pod 'TZImagePickerController' pod 'IQKeyboardManagerSwift' #, :git => 'https://github.com/hackiftekhar/IQKeyboardManager.git' pod 'Masonry' #pod 'MJRefresh' pod 'LYEmptyView' pod 'SwiftyUserDefaults' pod 'FSCalendar',:git =>'https://github.com/WenchaoD/FSCalendar.git' end post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| deployment_target = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] if !deployment_target.nil? && !deployment_target.empty? && deployment_target.to_f < 11.0 config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' end end end end