-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKPermission.podspec
More file actions
29 lines (25 loc) · 883 Bytes
/
KPermission.podspec
File metadata and controls
29 lines (25 loc) · 883 Bytes
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 = "KPermission"
s.version = "1.0.4"
s.summary = "Easy request permissions on iOS"
s.description = <<-DESC
Easy request permissions on iOS
DESC
s.homepage = "https://github.com/KenanAtmaca/KPermission"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "KenanAtmaca" => "mail.kenanatmaca@gmail.com" }
s.social_media_url = "https://twitter.com/uikenan"
s.platform = :ios, "11.0"
s.requires_arc = true
s.ios.deployment_target = "11.0"
s.source = { :git => "https://github.com/KenanAtmaca/KPermission", :tag => "#{s.version}" }
s.source_files = "KPermission", "KPermission/**/*.{h,m,swift}"
s.resources = "KPermission/**/*.{xib,png}"
s.resource_bundles = {
'KPermission' => [
'KPermission/**/*.{xib,png}'
]
}
s.swift_version = '4.2'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2'}
end