| 123456789101112131415161718192021222324252627282930 |
- Pod::Spec.new do |spec|
- spec.name = 'TIMCommon'
- spec.version = '1.0.0'
- spec.platform = :ios
- spec.ios.deployment_target = '9.0'
- spec.license = { :type => 'Proprietary',
- :text => <<-LICENSE
- copyright 2017 tencent Ltd. All rights reserved.
- LICENSE
- }
- spec.homepage = 'https://cloud.tencent.com/document/product/269/3794'
- spec.documentation_url = 'https://cloud.tencent.com/document/product/269/9147'
- spec.authors = 'tencent video cloud'
- spec.summary = 'TIMCommon'
- spec.dependency 'TUICore'
- spec.dependency 'SDWebImage'
- spec.dependency 'ReactiveObjC'
- spec.dependency 'Masonry'
- spec.dependency 'SVGAPlayer-iOS'
- spec.requires_arc = true
- spec.source = { :git => 'https://git.woa.com/lynxzhang/tui-components.git', :tag => spec.version}
- spec.source_files = '**/*.{h,m,mm,c}'
- spec.resource = ['Resources/*.bundle']
- spec.resource_bundle = {
- "#{spec.module_name}_Privacy" => 'Resources/PrivacyInfo.xcprivacy'
- }
- end
|