-
Notifications
You must be signed in to change notification settings - Fork 37
/
WPMediaPicker.podspec
33 lines (27 loc) · 1.35 KB
/
WPMediaPicker.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
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'WPMediaPicker'
s.version = '1.8.11'
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/trunk/screenshots_1.jpg'
s.license = { type: 'GPLv2', file: 'LICENSE' }
s.author = { 'The WordPress Mobile Team' => '[email protected]' }
s.platform = :ios, '13.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/wordpress-mobile/MediaPicker-iOS.git', tag: s.version.to_s }
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',
'Pod/Classes/UIViewController+MediaAdditions.h'
s.frameworks = 'UIKit', 'Photos', 'AVFoundation', 'ImageIO'
end