12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- Pod::Spec.new do |s|
- s.name = 'BFRecordScreenKit'
- s.version = '0.1.0'
- s.summary = 'A short description of BFRecordScreenKit.'
- s.description = <<-DESC
- TODO: Add long description of the pod here.
- DESC
- s.homepage = 'https://github.com/harry/BFRecordScreenKit'
-
- s.license = { :type => 'MIT', :file => 'LICENSE' }
- s.author = { 'harry' => 'hz_hzq@126.com' }
- s.source = { :git => 'https://github.com/harry/BFRecordScreenKit.git', :tag => s.version.to_s }
-
- s.ios.deployment_target = '10.0'
- s.static_framework = true
- s.requires_arc = true
- s.swift_versions = ['5.0']
-
- s.source_files = 'BFRecordScreenKit/Classes/**/*'
- s.resource_bundles = {
- 'BFRecordScreenKit_Resources' => ['BFRecordScreenKit/Assets/*']
- }
-
-
-
-
-
- s.dependency 'BFCommonKit'
- s.dependency 'BFFramework'
- s.dependency 'BFVideoEditKit'
- s.dependency 'BFUIKit'
- s.dependency 'GPUImage'
- end
|