| 1234567891011121314151617181920212223242526 |
- Pod::Spec.new do |spec|
-
- spec.name = "TXAppBasic"
- spec.version = "1.0.0"
- spec.platform = :ios
- spec.ios.deployment_target = '11.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 = 'TXAppBasic'
- spec.xcconfig = { 'VALID_ARCHS' => 'armv7 arm64 x86_64' }
- spec.swift_version = '5.0'
-
- spec.source = { :path => './'}
- spec.source_files = '**/AppBasicSource/**/*.{swift,h,m,mm}', '**/AppBasicSource/*.{swift,h,m,mm}'
- spec.pod_target_xcconfig = {
- 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
- }
- spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
- end
|