-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProntoSDK.podspec
More file actions
63 lines (55 loc) · 2 KB
/
ProntoSDK.podspec
File metadata and controls
63 lines (55 loc) · 2 KB
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
53
54
55
56
57
58
59
60
61
62
63
Pod::Spec.new do |s|
s.name = "ProntoSDK"
s.version = "4.0.5"
s.author = { "Bas van Kuijck" => "bas@e-sites.nl" }
s.license = { :type => "MIT", :file => "LICENSE" }
s.homepage = "http://www.e-sites.nl"
s.summary = "_THE_ Swift iOS Pronto SDK"
s.source = { :git => "https://github.com/Pronto-am/MobileCMS-iOS-SDK.git", :tag => "v#{s.version}" }
s.source_files = "ProntoSDK/ProntoSDK.h"
s.public_header_files = "ProntoSDK/ProntoSDK.h"
s.platform = :ios, '10.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.swift_versions = [ '5.0', '5.1', '5.2', '5.3' ]
s.subspec 'Core' do |ss|
ss.dependency 'SwiftyJSON'
ss.dependency 'KeychainAccess'
ss.dependency 'CryptoSwift'
ss.dependency 'RxSwift'
ss.dependency 'RxCocoa'
ss.dependency 'Logging'
ss.dependency 'Cobalt'
ss.dependency 'Einsteinium'
ss.source_files = "ProntoSDK/Classes/Core/**/*.{h,m,swift}"
end
s.subspec 'Notifications' do |ss|
ss.dependency 'ProntoSDK/Core'
ss.dependency 'Erbium'
ss.source_files = "ProntoSDK/Classes/Notifications/**/*.{h,m,swift}"
ss.frameworks = 'UserNotifications', 'UIKit', 'WebKit'
end
s.subspec 'Authentication' do |ss|
ss.dependency 'ProntoSDK/Core'
ss.dependency 'RxSwift'
ss.source_files = "ProntoSDK/Classes/Authentication/**/*.{h,m,swift}"
end
s.subspec 'Collections' do |ss|
ss.dependency 'ProntoSDK/Core'
ss.source_files = "ProntoSDK/Classes/Collections/**/*.{h,m,swift}"
ss.frameworks = 'CoreLocation'
end
s.subspec 'AppUpdateCheck' do |ss|
ss.dependency 'ProntoSDK/Core'
ss.dependency 'Erbium'
ss.source_files = "ProntoSDK/Classes/AppUpdateCheck/**/*.{h,m,swift}"
end
s.subspec 'Localization' do |ss|
ss.dependency 'ProntoSDK/Core'
ss.source_files = "ProntoSDK/Classes/Localization/**/*.{h,m,swift}"
end
s.subspec 'RemoteConfig' do |ss|
ss.dependency 'ProntoSDK/Core'
ss.source_files = "ProntoSDK/Classes/RemoteConfig/**/*.{h,m,swift}"
end
end