Podfile 959 Bytes
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
source 'http://bj.gitlab.cnlive.com/ios-team/CNLiveRepos.git'

platform :ios, '9.0'

target 'CNLiveLoginModule_Example' do
  pod 'CNLiveLoginModule', :path => '../'

  #依赖三方私有库,如果里面有.a的时候加上这个
  pre_install do |installer| Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
  end
  post_install do |installer_representation|
    installer_representation.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
         #share使用pod库时,pod中包含[UIApplication sharedApplication]的代码,需要下面的配置
         config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
           config.build_settings['ENABLE_BITCODE'] = false
      end
    end
  end
  
  target 'CNLiveLoginModule_Tests' do
    inherit! :search_paths

    
  end
end