-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPickImageAlert.podspec
18 lines (18 loc) · 972 Bytes
/
PickImageAlert.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "PickImageAlert"
s.version = "1.0.6"
s.summary = "Photos or camera access using the system alert controller"
s.description = "PickImageAlert provides a list of your photos in your alert controller with three alert actions"
s.requires_arc = true
s.homepage = "https://github.com/thejohnlima/PickImageAlert"
s.license = "MIT"
s.author = { "John Lima" => "thejohnlima@icloud.com" }
s.social_media_url = "https://twitter.com/thejohnlima"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/thejohnlima/PickImageAlert.git", :tag => "#{s.version}" }
s.framework = "UIKit"
s.source_files = "Framework/PickImageAlert/**/*.{swift}"
s.resources = "Framework/PickImageAlert/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
s.swift_version = "5.0"
s.dependency 'SwiftLint'
end