-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInstagramPhotos.podspec
47 lines (42 loc) · 2.05 KB
/
InstagramPhotos.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Be sure to run `pod lib lint InstagramPhotos.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'InstagramPhotos'
s.version = '2.0.3'
s.summary = 'An elegant instagram design photos picker viewController using swift'
s.license = 'MIT'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
A instagram photos picker ViewController using swift 5. Your can easy to get your photo quickly.
And zooming, clip.
New UI design same with instagram
Adding localization support
Supporting new iOS 14 photos limited access system
DESC
s.homepage = 'https://github.com/sweetmans/InstagramPhotos'
s.screenshots = 'https://github.com/sweetmans/InstagramPhotos/blob/develop/Assets/banner.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'sweetmans' => 'bp@sweetman.cc' }
s.source = { :git => 'https://github.com/sweetmans/InstagramPhotos.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tubepets'
s.ios.deployment_target = '11.0'
s.source_files = 'InstagramPhotos/InstagramPhotos/Classes/**/*.swift'
s.resources = ['InstagramPhotos/InstagramPhotos/Resources/*.png', 'InstagramPhotos/InstagramPhotos/Resources/*.xib']
s.module_name = 'InstagramPhotos'
# s.resource_bundles = {
# 'SMColor' => ['SMColor/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'Photos', 'PhotosUI'
s.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4']
# s.dependency 'AFNetworking', '~> 2.3'
end