TXAppBasic.podspec 955 B

1234567891011121314151617181920212223242526
  1. Pod::Spec.new do |spec|
  2. spec.name = "TXAppBasic"
  3. spec.version = "1.0.0"
  4. spec.platform = :ios
  5. spec.ios.deployment_target = '11.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 = 'TXAppBasic'
  15. spec.xcconfig = { 'VALID_ARCHS' => 'armv7 arm64 x86_64' }
  16. spec.swift_version = '5.0'
  17. spec.source = { :path => './'}
  18. spec.source_files = '**/AppBasicSource/**/*.{swift,h,m,mm}', '**/AppBasicSource/*.{swift,h,m,mm}'
  19. spec.pod_target_xcconfig = {
  20. 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
  21. }
  22. spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
  23. end