-
Notifications
You must be signed in to change notification settings - Fork 3
/
WultraMobileTokenSDK.podspec
43 lines (37 loc) · 1.35 KB
/
WultraMobileTokenSDK.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
Pod::Spec.new do |s|
s.name = 'WultraMobileTokenSDK'
s.version = '1.12.0'
# Metadata
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.summary = 'High level PowerAuth based library written in swift'
s.homepage = 'https://github.com/wultra/mtoken-sdk-ios'
s.social_media_url = 'https://twitter.com/wultra'
s.author = { 'Wultra s.r.o.' => '[email protected]' }
s.source = { :git => 'https://github.com/wultra/mtoken-sdk-ios.git', :tag => s.version }
# Deployment targets
s.swift_version = '5.9'
s.ios.deployment_target = '12.0'
# Sources
s.default_subspec = 'Operations'
# 'Common' subspec
s.subspec 'Common' do |sub|
sub.source_files = 'WultraMobileTokenSDK/Common/**/*.swift'
sub.dependency 'PowerAuth2', '~> 1.9.0'
sub.dependency 'WultraPowerAuthNetworking', '~> 1.5.0'
end
# 'Operations' subspec
s.subspec 'Operations' do |sub|
sub.source_files = 'WultraMobileTokenSDK/Operations/**/*.swift'
sub.dependency 'WultraMobileTokenSDK/Common'
end
# 'Push' subspec
s.subspec 'Push' do |sub|
sub.source_files = 'WultraMobileTokenSDK/Push/**/*.swift'
sub.dependency 'WultraMobileTokenSDK/Common'
end
# 'Inbox' subspec
s.subspec 'Inbox' do |sub|
sub.source_files = 'WultraMobileTokenSDK/Inbox/**/*.swift'
sub.dependency 'WultraMobileTokenSDK/Common'
end
end