-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSPAsyncVideoView.podspec
More file actions
18 lines (18 loc) · 1.07 KB
/
SPAsyncVideoView.podspec
File metadata and controls
18 lines (18 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'SPAsyncVideoView'
s.version = '0.5.0'
s.summary = 'Smooth asynchronous video view. Perfect for autoplay & loop videos/GIFs in UITableView/UICollectionView.'
s.description = <<-DESC
Smooth asynchronous video view. Perfect for autoplay & loop videos/GIFs in UITableView/UICollectionView..
Can play GIFs/videos with low memory footprint and on 60fps.
DESC
s.homepage = 'https://github.com/xquezme/SPAsyncVideoView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Pimenov Sergey' => 'pimenov.sergei@gmail.com' }
s.source = { :git => 'https://github.com/xquezme/SPAsyncVideoView.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'SPAsyncVideoView/Classes/**/*'
s.public_header_files = 'SPAsyncVideoView/Classes/Public/**/*.h'
s.frameworks = 'UIKit', 'Foundation', 'AVFoundation', 'ImageIO', 'MobileCoreServices', 'CoreMedia'
s.requires_arc = true
end