forked from mikaoj/BSImagePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBSImagePicker.podspec
executable file
·26 lines (23 loc) · 1.05 KB
/
BSImagePicker.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
Pod::Spec.new do |s|
s.name = "BSImagePicker"
s.version = "2.10.1"
s.summary = "BSImagePicker is a multiple image picker for iOS. UIImagePickerController replacement"
s.description = <<-DESC
A mix between the native iOS gallery and facebooks image picker. Allows you to preview and select multiple images.
It is intended as a replacement for UIImagePickerController for both selecting and taking photos.
DESC
s.homepage = "https://github.com/mikaoj/BSImagePicker"
s.license = 'MIT'
s.author = { "Joakim Gyllström" => "joakim@backslashed.se" }
s.source = { :git => "https://github.com/mikaoj/BSImagePicker.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.swift_version = "5.0"
s.source_files = 'Sources/**/*.swift'
s.resource_bundles = {
'BSImagePicker' => ['Resources/*.png']
}
s.frameworks = 'UIKit', 'Photos'
s.dependency 'BSImageView', '1.0.3'
s.dependency 'BSGridCollectionViewLayout', '1.2.5'
end