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

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

  # Pods for PodTest
  pod 'TAVMagic',:podspec => 'https://mediacloud-76607.gzc.vod.tencent-cloud.com/TAVMagic/iOS/Test/latest/TAVMagic.podspec'
  pod 'TencentEffect_Edit', :podspec => 'https://mediacloud-76607.gzc.vod.tencent-cloud.com/TencentEffect/iOS/edit/3.9.1.1/TencentEffect_Edit.podspec'
end



post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0' # 将 '10.0' 改为你需要的最低支持版本
    end
  end
end
