2
0

Alamofire.podspec 988 B

1234567891011121314151617181920212223242526272829
  1. Pod::Spec.new do |s|
  2. s.name = 'Alamofire'
  3. s.version = '5.9.1'
  4. s.license = 'MIT'
  5. s.summary = 'Elegant HTTP Networking in Swift'
  6. s.homepage = 'https://github.com/Alamofire/Alamofire'
  7. s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' }
  8. s.source = { :git => 'https://github.com/Alamofire/Alamofire.git', :tag => s.version }
  9. s.documentation_url = 'https://alamofire.github.io/Alamofire/'
  10. # 1.12.0: Ensure developers won't hit CocoaPods/CocoaPods#11402 with the resource
  11. # bundle for the privacy manifest.
  12. # 1.13.0: visionOS is recognized as a platform.
  13. s.cocoapods_version = '>= 1.13.0'
  14. s.ios.deployment_target = '10.0'
  15. s.osx.deployment_target = '10.12'
  16. s.tvos.deployment_target = '10.0'
  17. s.visionos.deployment_target = '1.0'
  18. s.watchos.deployment_target = '3.0'
  19. s.swift_versions = ['5']
  20. s.source_files = 'Source/**/*.swift'
  21. s.frameworks = 'CFNetwork'
  22. s.resource_bundles = {'Alamofire' => ['Source/PrivacyInfo.xcprivacy']}
  23. end