BFMaterialKit.podspec 1.1 KB

123456789101112131415161718192021222324252627282930
  1. #
  2. # Be sure to run `pod lib lint BFMaterialKit.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 = 'BFMaterialKit'
  10. s.version = '0.2.0'
  11. s.summary = '素材加载库'
  12. s.swift_version = '5.0'
  13. s.static_framework = true
  14. s.description = <<-DESC
  15. TODO: Add long description of the pod here.
  16. DESC
  17. s.homepage = 'https://git.yishihui.com/iOS'
  18. s.license = { :type => 'MIT', :file => 'LICENSE' }
  19. s.author = { 'wenweiwei' => 'wenweiwei@piaoquantv.com' }
  20. s.source = { :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git', :tag => s.version.to_s }
  21. s.ios.deployment_target = '10.0'
  22. s.source_files = 'BFMaterialKit/Classes/**/*'
  23. s.resource_bundles = {
  24. 'BFMaterialKit_Resources' => ['BFMaterialKit/Assets/Resources/**/*']
  25. }
  26. s.frameworks = 'UIKit', 'AVFoundation','CoreMedia', 'QuartzCore'
  27. s.dependency 'BFUIKit'
  28. end