forked from wordpress-mobile/MediaPicker-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWPMediaPicker.podspec
More file actions
29 lines (26 loc) · 1.45 KB
/
WPMediaPicker.podspec
File metadata and controls
29 lines (26 loc) · 1.45 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
Pod::Spec.new do |s|
s.name = "WPMediaPicker"
s.version = "0.24"
s.summary = "WPMediaPicker is an iOS controller that allows capture and picking of media assets."
s.description = <<-DESC
WPMediaPicker is an iOS controller that allows capture and picking of media assets.
It allows:
* Multiple selection of media.
* Capture of new media while selecting
DESC
s.homepage = "https://github.com/wordpress-mobile/MediaPicker-iOS"
s.screenshots = "https://raw.githubusercontent.com/wordpress-mobile/WPMediaPicker/master/screenshots_1.jpg"
s.license = { :type => 'GPLv2', :file => 'LICENSE' }
s.author = { "WordPress" => "mobile@automattic.com", "Sérgio Estêvão" => "sergioestevao@gmail.com", "James Frost" => "james.frost@automattic.com" }
s.social_media_url = "http://twitter.com/WordPressiOS"
s.source = { :git => "https://github.com/wordpress-mobile/MediaPicker-iOS.git", :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'WPMediaPicker' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.private_header_files = 'Pod/Classes/WPDateTimeHelpers.h', 'Pod/Classes/WPImageExporter.h'
s.frameworks = 'UIKit', 'Photos', 'AVFoundation', 'ImageIO'
end