TIMCommon.podspec 1000 B

12345678910111213141516171819202122232425262728293031
  1. Pod::Spec.new do |spec|
  2. spec.name = 'TIMCommon'
  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 = 'TIMCommon'
  15. spec.requires_arc = true
  16. spec.default_subspec = 'ImSDK_Plus'
  17. spec.subspec 'ImSDK_Plus' do |plus|
  18. plus.dependency 'TXIMSDK_Plus_iOS_XCFramework'
  19. end
  20. spec.source = { :git => 'https://git.woa.com/lynxzhang/tui-components.git', :tag => spec.version}
  21. spec.source_files = '**/*.{h,m,mm,c}'
  22. spec.resource = ['Resources/*.bundle']
  23. spec.resource_bundle = {
  24. "#{spec.module_name}_Privacy" => 'Resources/PrivacyInfo.xcprivacy'
  25. }
  26. end