-
Notifications
You must be signed in to change notification settings - Fork 10
/
EasyAlbum.podspec
32 lines (26 loc) · 1.31 KB
/
EasyAlbum.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
#
# Be sure to run `pod spec lint EasyAlbum.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "EasyAlbum"
spec.version = "2.3.1"
spec.summary = "📷 A lightweight, pure-Swift library for pick up photo from ur album."
spec.description = <<-DESC
📷 A lightweight, pure-Swift library can help u easy to pick up photo from album.
DESC
spec.homepage = "https://github.com/ray00178/EasyAlbum"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Ray" => "[email protected]" }
spec.social_media_url = "https://twitter.com/ray00178"
spec.swift_version = '5.0'
spec.platform = :ios, "10.0+"
spec.ios.deployment_target = "10.0"
spec.source = { :git => "https://github.com/ray00178/EasyAlbum.git", :tag => spec.version }
spec.source_files = "Sources/**/*.{h,swift,xib}"
spec.resource_bundles = { 'EasyAlbum' => ['Sources/EasyAlbum/EasyAlbum.bundle/*.{png,pdf}'] }
spec.frameworks = 'UIKit', 'Photos', 'PhotosUI', 'ImageIO'
end