123456789101112131415161718192021222324252627282930 |
- #
- # Be sure to run `pod lib lint BFMaterialKit.podspec' to ensure this is a
- # valid spec before submitting.
- #
- # Any lines starting with a # are optional, but their use is encouraged
- # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
- #
- Pod::Spec.new do |s|
- s.name = 'BFMaterialKit'
- s.version = '0.2.0'
- s.summary = '素材加载库'
- s.swift_version = '5.0'
- s.static_framework = true
- s.description = <<-DESC
- TODO: Add long description of the pod here.
- DESC
- s.homepage = 'https://git.yishihui.com/iOS'
- s.license = { :type => 'MIT', :file => 'LICENSE' }
- s.author = { 'wenweiwei' => 'wenweiwei@piaoquantv.com' }
- s.source = { :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git', :tag => s.version.to_s }
- s.ios.deployment_target = '10.0'
- s.source_files = 'BFMaterialKit/Classes/**/*'
- s.resource_bundles = {
- 'BFMaterialKit_Resources' => ['BFMaterialKit/Assets/Resources/**/*']
- }
- s.frameworks = 'UIKit', 'AVFoundation','CoreMedia', 'QuartzCore'
- s.dependency 'BFUIKit'
- end
|