-
Notifications
You must be signed in to change notification settings - Fork 0
/
Permissions.podspec
52 lines (43 loc) · 1.44 KB
/
Permissions.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
48
49
50
51
52
Pod::Spec.new do |s|
s.name = "Permissions"
s.version = "0.0.6"
s.summary = "A light weight iOS Permission Authorization manager"
s.homepage = "https://github.com/my1325/Permissions.git"
s.license = "MIT"
s.platform = :ios, "12.0"
s.authors = { "mayong" => "[email protected]" }
s.source = { :git => "https://github.com/my1325/Permissions.git", :tag => "#{s.version}" }
s.swift_version = '5.1'
s.default_subspecs = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/PermissionsCore/*.swift'
end
s.subspec 'AppTracking' do |ss|
ss.source_files = 'Sources/AppTracking/*.swift'
ss.dependency 'Permissions/Core'
end
s.subspec 'Notification' do |ss|
ss.source_files = 'Sources/Notification/*.swift'
ss.dependency 'Permissions/Core'
end
s.subspec 'AVDevice' do |ss|
ss.source_files = 'Sources/AVDevice/*.swift'
ss.dependency 'Permissions/Core'
end
s.subspec 'PhotoLibrary' do |ss|
ss.source_files = 'Sources/PhotoLibrary/*.swift'
ss.dependency 'Permissions/Core'
end
s.subspec 'Location' do |ss|
ss.source_files = 'Sources/Location/*.swift'
ss.dependency 'Permissions/Core'
end
s.subspec 'Contact' do |ss|
ss.source_files = 'Sources/Contact/*.swift'
ss.dependency 'Permissions/Core'
end
s.subspec 'Event' do |ss|
ss.source_files = 'Sources/Event/*.swift'
ss.dependency 'Permissions/Core'
end
end