Podfile 810 Bytes
source 'http://bj.gitlab.cnlive.com/ios-team/CNLiveRepos.git'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
use_frameworks!

platform :ios, '10.0'

target 'CNLiveNewIMAManagerKit_Example' do
  pod 'CNLiveNewIMAManagerKit', :path => '../'

  target 'CNLiveNewIMAManagerKit_Tests' do
    inherit! :search_paths

    
  end
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
    end
  end
  
#  installer.generated_projects.each do |project|
#    project.targets.each do |target|
#        target.build_configurations.each do |config|
#            config.build_settings["DEVELOPMENT_TEAM"] = "94X49GG3ZW"
#         end
#    end
#  end
  
end