-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathWultraSSLPinning.podspec
33 lines (29 loc) · 1.06 KB
/
WultraSSLPinning.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
Pod::Spec.new do |s|
s.name = 'WultraSSLPinning'
s.version = '1.9.0'
# Metadata
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.summary = 'Dynamic SSL pinning written in Swift'
s.homepage = 'https://github.com/wultra/ssl-pinning-ios'
s.social_media_url = 'https://twitter.com/wultra'
s.author = { 'Wultra s.r.o.' => 'support@wultra.com' }
s.source = { :git => 'https://github.com/wultra/ssl-pinning-ios.git', :tag => s.version }
# Deployment targets
s.swift_version = '5.9'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
# Sources
# Lib is defautl subspec
s.default_subspec = 'Lib'
# 'Lib' subspec
s.subspec 'Lib' do |sub|
sub.source_files = 'Sources/WultraSSLPinning/Lib/**/*.swift'
end
# 'PowerAuthIntegration' subspec
s.subspec 'PowerAuthIntegration' do |sub|
sub.source_files = 'Sources/WultraSSLPinning/Plugins/PowerAuth/**/*.swift'
sub.dependency 'WultraSSLPinning/Lib'
sub.dependency 'PowerAuth2', '~> 1.9.0'
sub.dependency 'PowerAuthCore', '~> 1.9.0'
end
end