TUIChat.podspec 888 B

12345678910111213141516171819202122232425
  1. Pod::Spec.new do |spec|
  2. spec.name = 'TUIChat'
  3. spec.version = '1.0.0'
  4. spec.platform = :ios
  5. spec.ios.deployment_target = '9.0'
  6. spec.license = { :type => 'Proprietary',
  7. :text => <<-LICENSE
  8. copyright 2017 tencent Ltd. All rights reserved.
  9. LICENSE
  10. }
  11. spec.homepage = 'https://cloud.tencent.com/document/product/269/3794'
  12. spec.documentation_url = 'https://cloud.tencent.com/document/product/269/9147'
  13. spec.authors = 'tencent video cloud'
  14. spec.summary = 'TUIChat'
  15. spec.dependency 'TIMCommon'
  16. spec.requires_arc = true
  17. spec.source = { :git => 'https://git.woa.com/lynxzhang/tui-components.git', :tag => spec.version}
  18. spec.source_files = '**/*.{h,m,mm,c}'
  19. spec.resource = ['Resources/*.bundle']
  20. spec.resource_bundle = {
  21. "#{spec.module_name}_Privacy" => 'Resources/PrivacyInfo.xcprivacy'
  22. }
  23. end