#source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '12.0'
use_frameworks!
target ‘SDKDemo’ do





pod 'AliyunLogProducer','3.1.16'
pod 'Ads-Global','6.2.0.9'
pod 'IronSourceSDK','7.3.0.0'
pod 'MintegralAdSDK/All','7.3.7'
pod 'BigoADS','4.6.0'
pod 'Google-Mobile-Ads-SDK','11.5.0'
pod 'GoogleMobileAdsMediationFacebook','6.15.0'
pod 'GoogleMobileAdsMediationVungle'
pod 'GoogleMobileAdsMediationAdColony'
pod 'AmazonPublisherServicesSDK','4.7.5'
pod 'AppLovinSDK','11.11.3'


pod 'Masonry'
pod 'WechatOpenSDK'



post_install do |installer|
    installer.generated_projects.each do |project|
          project.targets.each do |target|
              target.build_configurations.each do |config|
                  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
                  xcconfig_path = config.base_configuration_reference.real_path
                  xcconfig = File.read(xcconfig_path)
                  xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
                  File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
                  
               end
          end
   end
end

end
