-
Notifications
You must be signed in to change notification settings - Fork 971
/
ZLPhotoBrowser.podspec
33 lines (23 loc) · 1.33 KB
/
ZLPhotoBrowser.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
Pod::Spec.new do |s|
s.name = 'ZLPhotoBrowser'
s.version = '4.5.6'
s.summary = 'A lightweight and pure Swift implemented library for select photos from album'
s.description = <<-DESC
Wechat-like image picker. Support select photos, videos, gif and livePhoto. Support edit image and crop video.
DESC
s.homepage = 'https://github.com/longitachi/ZLPhotoBrowser'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = {'longitachi' => '[email protected]'}
s.social_media_url = 'https://github.com/longitachi'
s.source = {:git => 'https://github.com/longitachi/ZLPhotoBrowser.git', :tag => s.version}
s.ios.deployment_target = '10.0'
s.swift_versions = ['5.0', '5.1', '5.2']
s.requires_arc = true
s.frameworks = 'UIKit','Photos','PhotosUI','AVFoundation','CoreMotion', 'Accelerate'
s.resources = 'Sources/*.{png,bundle}'
s.resource_bundles = {'ZLPhotoBrowser_Privacy' => ['Sources/PrivacyInfo.xcprivacy']}
s.subspec "Core" do |sp|
sp.source_files = ['Sources/**/*.{swift,h,m}', 'Sources/ZLPhotoBrowser.h']
sp.exclude_files = ['Sources/General/ZLWeakProxy.swift']
end
end