forked from datatheorem/TrustKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TrustKit.podspec
28 lines (26 loc) · 1.18 KB
/
TrustKit.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
Pod::Spec.new do |s|
s.name = "TrustKit"
s.version = "2.0.1"
s.summary = 'TrustKit is an open source framework that makes it easy to deploy SSL pinning in any iOS, macOS, tvOS or watchOS App.'
s.homepage = "https://datatheorem.github.io/TrustKit"
s.documentation_url = 'https://datatheorem.github.io/TrustKit/documentation/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = 'Alban Diquet', 'Angela Chow', 'Eric Castro'
s.source = { :git => "https://github.com/datatheorem/TrustKit.git", :tag => "#{s.version}" }
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.source_files = ['TrustKit', 'TrustKit/**/*.{h,m,c}']
s.public_header_files = [
'TrustKit/public/TrustKit.h',
'TrustKit/public/TSKTrustKitConfig.h',
'TrustKit/public/TSKPinningValidator.h',
'TrustKit/public/TSKPinningValidatorCallback.h',
'TrustKit/public/TSKPinningValidatorResult.h',
'TrustKit/public/TSKTrustDecision.h',
]
s.frameworks = ['Foundation', 'Security']
s.requires_arc = true
end