#use_frameworks!
install! 'cocoapods', :deterministic_uuids => false
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'

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

platform :ios, '9.0'

target 'AliyunVideoClient_Entrance' do
  
  #友盟crash收集
  pod 'UMCCommon','2.0.0'
  pod 'UMCAnalytics','6.0.1'
  
pod 'AlivcCommon', :path => 'AlivcCommon/' 
pod 'AlivcBasicVideo', :path => 'AlivcBasicVideo/' 
pod 'AlivcPlayVideo', :path => 'AlivcPlayVideo/' 


  pod 'MRDLNA',:git => 'https://github.com/MQL9011/MRDLNA.git'
#  pod 'AliPlayerSDK_iOS',:git => 'https://github.com/aliyunvideo/AliPlayerSDK',:tag=>'5.4.2.0'
#  pod 'AliPlayerSDK_iOS_ARTC',:git => 'https://github.com/aliyunvideo/AliPlayerSDK',:tag=>'5.4.2.0'

end

# 解决XCode14上Pods工程中的Bundle target签名报错
post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['CODE_SIGN_IDENTITY'] = ''
      end
    end
end
