-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podspec
29 lines (24 loc) · 1.23 KB
/
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 = "ApproovURLSession"
s.version = "3.2.7"
s.summary = "Approov mobile attestation SDK"
s.description = <<-DESC
Approov SDK integrates security attestation and secure string fetching for both iOS and watchOS apps.
DESC
s.homepage = "https://approov.io"
s.license = { :type => "Commercial", :file => "LICENSE" }
s.authors = { "CriticalBlue, Ltd." => "[email protected]" }
s.source = { :git => "https://github.com/approov/approov-ios-sdk.git", :tag => s.version }
# Supported platforms
s.ios.deployment_target = '11.0'
s.watchos.deployment_target = '7.0'
# Specify the source code paths for the combined target
s.source_files = "Sources/ApproovURLSession/**/*.{swift,h}"
s.watchos.vendored_frameworks = 'https://github.com/approov/approov-ios-sdk/releases/download/3.2.4/Approov.xcframework.zip'
s.ios.vendored_frameworks = 'https://github.com/approov/approov-ios-sdk/releases/download/3.2.4/Approov.xcframework.zip'
# Pod target xcconfig settings if required
s.pod_target_xcconfig = {
'VALID_ARCHS' => 'arm64 x86_64', # Valid architectures for iOS
'VALID_ARCHS' => 'arm64_32 x86_64' # Valid architectures for watchOS
}
end