swift pod引入 toast-swift插件报错的问题

# Uncomment the next line to define a global platform for your project
# platform :ios, '11.0'

target 'aiFactory' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for aiFactory
  pod  'Ads-CN'
  pod 'Toast-Swift', '~> 5.0.1'

end

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'] = '13.0'
               end
          end
   end
end
 

你可能感兴趣的:(手游开发,github)