# Uncomment the next line to define a global platform for your project platform :ios, '10.0' inhibit_all_warnings! target 'TFReader' do # Uncomment the next line if you're using Swift or would like to use dynamic frameworks # use_frameworks! # pod 'AFNetworking', :inhibit_warnings => true # # pod 'YYKit', :inhibit_warnings => true # # pod 'Masonry', :inhibit_warnings => true # # pod 'pop', :inhibit_warnings => true # # pod 'CYLTabBarController', :inhibit_warnings => true # # pod 'MJRefresh', :inhibit_warnings => true # # pod 'SGPagingView', :inhibit_warnings => true # # pod 'XHNetworkCache', :inhibit_warnings => true # # pod 'XHLaunchAd', :inhibit_warnings => true # # pod 'TTRangeSlider', :inhibit_warnings => true # # pod 'mob_pushsdk' # # pod 'mob_sharesdk' # # pod 'mob_sharesdk/ShareSDKPlatforms/QQ_Lite' # # pod 'mob_sharesdk/ShareSDKPlatforms/WeChat_Lite' 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 < 10.0 config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0' end end end end