-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlaneurImagePicker.podspec
More file actions
35 lines (27 loc) · 1.3 KB
/
FlaneurImagePicker.podspec
File metadata and controls
35 lines (27 loc) · 1.3 KB
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
Pod::Spec.new do |s|
s.name = 'FlaneurImagePicker'
s.version = '0.8.0-beta'
s.summary = 'FlaneurImagePicker is an iOS image picker'
s.description = <<-DESC
FlaneurImagePicker is an iOS image picker that allows users to pick images from different sources (ex: user's library, user's camera, Instagram...).
It's highly customizable.
DESC
s.homepage = "https://github.com/FlaneurApp/FlaneurImagePicker"
# s.screenshots = "https://raw.githubusercontent.com/toto/FlaneurImagePicker/master/images/logo.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Flâneur" => "dev@flaneurapp.com" }
s.source = { :git => "https://github.com/FlaneurApp/FlaneurImagePicker.git", :tag => s.version.to_s }
s.ios.deployment_target = "9.0"
s.module_name = 'FlaneurImagePicker'
s.source_files = 'Sources/Classes/**/*'
s.resource_bundle = { 'FlaneurImagePicker' => "Sources/Assets/*" }
# s.requires_arc = true
s.framework = 'UIKit', 'Photos'
s.dependency 'IGListKit', '~> 3.0'
s.dependency 'ActionKit', '~> 2.1'
s.dependency 'Kingfisher', '~> 4.0'
s.pod_target_xcconfig = {
'SWIFT_SWIFT3_OBJC_INFERENCE' => 'Default',
'SWIFT_VERSION' => '4.0'
}
end