Podfile 885 Bytes
use_frameworks!

platform :ios, '10.0'
source 'http://bj.gitlab.cnlive.com/ios-team/CNLiveRepos.git'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
source 'http://bj.gitlab.cnlive.com/DSIOSTeam/DSSpecRepos.git'
# 忽略引入库的所有警告
inhibit_all_warnings!
install! 'cocoapods',
        :deterministic_uuids => false,
        :disable_input_output_paths => true # 避免Assets.car资源拷贝,引起[CP] Copy Pods Resources编译失败

target 'CNLiveCMineModule_Example' do
  pod 'CNLiveCMineModule', :path => '../'
  pod 'CNLiveSDK/CNLiveUserSystemSDK'
  #依赖三方私有库,如果里面有.a的时候加上这个
  pre_install do |installer| Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
  end
  target 'CNLiveCMineModule_Tests' do
    inherit! :search_paths

    
  end
end