BFCommonKit.podspec 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #
  2. # Be sure to run `pod lib lint BFCommonKit.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 = 'BFCommonKit'
  10. s.version = '1.0.1'
  11. s.summary = 'A short description of BFCommonKit.'
  12. s.swift_version = '5.0'
  13. # This description is used to generate tags and improve search results.
  14. # * Think: What does it do? Why did you write it? What is the focus?
  15. # * Try to keep it short, snappy and to the point.
  16. # * Write the description between the DESC delimiters below.
  17. # * Finally, don't worry about the indent, CocoaPods strips it!
  18. s.description = <<-DESC
  19. TODO: Add long description of the pod here.
  20. DESC
  21. s.homepage = 'https://git.yishihui.com/wenweiwei/BFCommonKit'
  22. # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  23. s.license = { :type => 'MIT', :file => 'LICENSE' }
  24. s.author = { 'wenweiwei' => 'wenweiwei@piaoquantv.com' }
  25. s.source = { :git => 'https://git.yishihui.com/wenweiwei/BFCommonKit.git', :tag => s.version.to_s }
  26. # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
  27. s.ios.deployment_target = '10.0'
  28. # s.source_files = 'Classes/**/*'
  29. # subspec
  30. s.subspec 'BFBase' do |bb|
  31. bb.source_files = 'BFCommonKit/Classes/BFBase/**/*'
  32. bb.frameworks = 'UIKit', 'WebKit'
  33. bb.dependency 'Alamofire','4.9.1'
  34. bb.dependency 'SnapKit','5.0.1'
  35. end
  36. s.subspec 'BFEnums' do |ee|
  37. ee.source_files = 'BFCommonKit/Classes/BFEnums/*'
  38. ee.frameworks = 'Foundation'
  39. end
  40. s.subspec 'BFCategorys' do |cc|
  41. cc.source_files = 'BFCommonKit/Classes/BFCategorys/*'
  42. cc.frameworks = 'Foundation','UIKit','MobileCoreServices' # ,'CommonCrypto'
  43. cc.dependency 'KingfisherWebP','1.3.0'
  44. cc.dependency 'BFCommonKit/BFUtility'
  45. end
  46. s.subspec 'BFUtility' do |uu|
  47. uu.source_files = 'BFCommonKit/Classes/BFUtility/*'
  48. uu.frameworks = 'Foundation','UIKit','AdSupport','Photos','AudioToolbox','AVKit'
  49. uu.dependency 'KingfisherWebP','1.3.0'
  50. uu.dependency 'Alamofire','4.9.1'
  51. uu.dependency 'KeychainAccess','4.2.2'
  52. uu.dependency 'Kingfisher','6.3.0'
  53. uu.dependency 'Toast-Swift','5.0.1'
  54. end
  55. s.subspec 'BFDebug' do |dd|
  56. dd.source_files = 'BFCommonKit/Classes/BFDebug/*'
  57. dd.frameworks = 'UIKit','MessageUI','WebKit'
  58. end
  59. s.resource_bundles = {
  60. 'BFCommon_Resources' => ['BFCommonKit/Assets/Resources/*.png']
  61. }
  62. # s.resources = 'BFCommonKit/Assets/Resources/*.png'
  63. # s.public_header_files = 'Pod/Classes/**/*.h'
  64. # s.frameworks = 'UIKit', 'MapKit'
  65. # s.frameworks = 'UIKit', 'AVFoundation','CoreMedia', 'QuartzCore'
  66. # s.dependency 'Kingfisher','6.3.0'
  67. # s.dependency 'KingfisherWebP','1.3.0'
  68. # s.dependency 'SnapKit','5.0.1'
  69. # s.dependency 'Alamofire','4.9.1'
  70. # s.dependency 'KeychainAccess','4.2.2'
  71. # s.dependency 'Toast-Swift','5.0.1'
  72. # s.dependency 'FDFullscreenPopGesture'
  73. end