FDNetworkObjC.podspec 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Be sure to run `pod lib lint FDNetworkObjC.podspec' to ensure this is a
  3. # valid spec before submitting.
  4. #
  5. # Any lines starting with a # are optional, but their use is encouraged
  6. # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
  7. #
  8. Pod::Spec.new do |s|
  9. s.name = 'FDNetworkObjC'
  10. s.version = '1.3.1'
  11. s.summary = 'FDNetworkObjC是一个网络库,包含HTTP和HTTPS的网络请求GET/POST和七牛云/腾讯云/阿里云OSS上传功能'
  12. # This description is used to generate tags and improve search results.
  13. # * Think: What does it do? Why did you write it? What is the focus?
  14. # * Try to keep it short, snappy and to the point.
  15. # * Write the description between the DESC delimiters below.
  16. # * Finally, don't worry about the indent, CocoaPods strips it!
  17. s.description = <<-DESC
  18. TODO: Add long description of the pod here.
  19. DESC
  20. s.homepage = 'http://git.bogokj.com/fandong/FDNetworkObjC'
  21. # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  22. s.author = { 'fandongtongxue' => 'admin@fandong.me' }
  23. s.source = { :git => 'http://git.bogokj.com/fandong/FDNetworkObjC.git', :tag => s.version.to_s }
  24. s.ios.deployment_target = '9.0'
  25. s.source_files = 'FDNetworkObjC/Classes/**/*'
  26. s.resource_bundles = {
  27. 'FDNetworkObjC' => ['FDNetworkObjC/Assets/*']
  28. }
  29. s.dependency 'AFNetworking', '~> 4.0.1'
  30. s.dependency 'SDWebImage'
  31. s.dependency 'Qiniu'
  32. s.dependency 'FDFoundationObjC'
  33. s.dependency 'AliyunOSSiOS'
  34. end