-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKSOMediaPicker.podspec
53 lines (44 loc) · 2.48 KB
/
KSOMediaPicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# Be sure to run `pod lib lint ${POD_NAME}.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'KSOMediaPicker'
s.version = '1.4.9'
s.summary = 'KSOMediaPicker is an iOS/tvOS framework that provides UI to access the Photos framework.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
KSOMediaPicker is an iOS/tvOS framework that provides UI to access the Photos framework. It provides similar functionality to UIImagePickerController on iOS and a custom implementation on tvOS. On iOS it uses FLAnimatedImage to support playback of GIFs within the asset collection view. It also supports playback of video assets while selected in the asset collection view.
DESC
s.homepage = 'https://github.com/Kosoku/KSOMediaPicker'
s.screenshots = ['https://github.com/Kosoku/KSOMediaPicker/raw/master/screenshots/iOS-1.png','https://github.com/Kosoku/KSOMediaPicker/raw/master/screenshots/iOS-2.png','https://github.com/Kosoku/KSOMediaPicker/raw/master/screenshots/iOS-3.png']
s.license = { :type => 'Apache 2.0', :file => 'license.txt' }
s.author = { 'William Towe' => '[email protected]' }
s.source = { :git => 'https://github.com/Kosoku/KSOMediaPicker.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.source_files = 'KSOMediaPicker/**/*.{h,m}'
s.exclude_files = 'KSOMediaPicker/KSOMediaPicker-Info.h'
s.private_header_files = 'KSOMediaPicker/Private/*.h'
s.ios.resource_bundles = {
'KSOMediaPicker' => ['KSOMediaPicker/**/*.{xib,lproj}']
}
s.tvos.resource_bundles = {
'KSOMediaPicker' => ['KSOMediaPicker/**/*.{lproj}']
}
s.frameworks = 'Photos', 'AVFoundation'
s.dependency 'Agamotto'
s.dependency 'Ditko'
s.dependency 'Quicksilver'
s.dependency 'Shield/Photos'
s.dependency 'KSOFontAwesomeExtensions'
s.ios.dependency 'FLAnimatedImage', '~> 1.0'
end