BFAnalyzeKit.podspec 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # Be sure to run `pod lib lint BFAnalyzeKit.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 = 'BFAnalyzeKit'
  10. s.version = '0.1.0'
  11. s.summary = '埋点库'
  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/iOS/BFAnalyzeKit'
  22. # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  23. s.license = { :type => 'MIT', :file => 'LICENSE' }
  24. s.author = { 'SanWCoder' => 'wenweiwei@piaoquantv.com' }
  25. s.source = { :git => 'https://git.yishihui.com/iOS/BFAnalyzeKit.git', :tag => s.version.to_s }
  26. s.ios.deployment_target = '10.0'
  27. s.requires_arc = true
  28. s.source_files = 'BFAnalyzeKit/Classes/**/*'
  29. s.dependency 'BFCommonKit/BFEnums'
  30. s.dependency 'BFCommonKit/BFEnv'
  31. s.dependency 'BFCommonKit/BFProtocols'
  32. s.dependency 'BFNetRequestKit'
  33. end