-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathJXPhotoBrowser.podspec
More file actions
29 lines (23 loc) · 1.14 KB
/
JXPhotoBrowser.podspec
File metadata and controls
29 lines (23 loc) · 1.14 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 = 'JXPhotoBrowser'
s.version = '4.0.2'
s.summary = 'A lightweight, customizable iOS photo/video browser with zoom transitions and infinite looping.'
s.description = <<-DESC
JXPhotoBrowser is a lightweight, zero-dependency iOS photo/video browser
built on UICollectionView. It features pinch-to-zoom, drag-to-dismiss,
Zoom/Fade/None transition animations, infinite-loop scrolling, and a
plug-in overlay system. The framework defines no data models and has no
image-loading logic built in — bring your own (Kingfisher, SDWebImage, etc.).
DESC
s.homepage = 'https://github.com/JiongXing/PhotoBrowser'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jiongxing' => 'liangjiongxing@qq.com' }
s.platform = :ios, '12.0'
s.swift_versions = ['5.4']
s.source = { :git => 'https://github.com/JiongXing/PhotoBrowser.git', :tag => s.version.to_s }
s.source_files = 'Sources/**/*.{swift}'
s.resource_bundles = {
'JXPhotoBrowser' => ['Sources/PrivacyInfo.xcprivacy']
}
s.frameworks = 'UIKit'
end