-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUWPhotoPicker.podspec
executable file
·30 lines (27 loc) · 1.18 KB
/
UWPhotoPicker.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
Pod::Spec.new do |s|
s.name = "UWPhotoPicker"
s.version = "1.0.5"
s.summary = "A image picker like Instagram."
s.description = <<-DESC
Present Image Picker like Instagram.You can crop a image using it.
DESC
s.homepage = "http://git.uniqueway.in/six/UWAImagePicker"
s.screenshots = "https://raw.githubusercontent.com/wenzhaot/InstagramPhotoPicker/master/Screenshots/Screenshot01.png"
s.license = "MIT"
s.author = { "wenzhaot" => "[email protected]" }
s.source = { :git => "http://git.uniqueway.in/six/UWAImagePicker.git" }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = "UWPhotoPicker/*","UWPhotoPicker/instagramFilter/*/*.{h,m}"
s.frameworks = "Foundation", "CoreGraphics", "UIKit"
s.resources = 'UWPhotoPicker/Resources/*'
s.dependency "libextobjc"
s.subspec 'SegmentControl' do |ss|
ss.public_header_files = 'SegmentControl/*.h'
ss.source_files = 'UWPhotoPicker/SegmentControl/*.{h,m}'
end
s.subspec 'UWPhotoBrowser' do |ss|
ss.public_header_files = 'UWPhotoBrowser/*.h'
ss.source_files = 'UWPhotoPicker/UWPhotoBrowser/*.{h,m}'
end
end