-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLCPermissionsKit.podspec
More file actions
31 lines (17 loc) · 960 Bytes
/
LCPermissionsKit.podspec
File metadata and controls
31 lines (17 loc) · 960 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
30
31
Pod::Spec.new do |spec|
spec.name = "LCPermissionsKit"
spec.version = "1.0.3"
spec.summary = "LCPermissionsKit is a convenient wrapper on the macOS permissions API"
spec.description = <<-DESC
LCPermissionsKit is a convenient wrapper on the macOS permissions API, including photos, contacts, reminders, and full disk access permissions
DESC
spec.homepage = "https://github.com/DevLiuSir/LCPermissionsKit"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Marvin" => "93428739@qq.com" }
spec.swift_versions = ['5.0']
spec.platform = :osx
spec.osx.deployment_target = "10.13"
spec.source = { :git => "https://github.com/DevLiuSir/LCPermissionsKit.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/LCPermissionsKit/**/*.{h,m,swift}"
spec.frameworks = 'Cocoa', 'Contacts', 'EventKit', 'Photos'
end