-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApproovSession.podspec
More file actions
26 lines (24 loc) · 1021 Bytes
/
ApproovSession.podspec
File metadata and controls
26 lines (24 loc) · 1021 Bytes
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
Pod::Spec.new do |s|
s.name = "ApproovSession"
s.version = "3.5.4"
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 = { "Approov, Ltd." => "support@approov.io" }
s.source = { :git => "https://github.com/approov/approov-service-alamofire", :tag => s.version }
# Supported platforms
s.ios.deployment_target = '11.0'
s.watchos.deployment_target = '9.0'
# Specify the source code paths for the combined target
s.source_files = "Sources/ApproovSession/**/*.{swift,h}"
# Dependency on the Approov SDK
s.dependency 'approov-ios-sdk', '~> 3.5.3'
s.frameworks = 'Approov'
# Pod target xcconfig settings if required
s.pod_target_xcconfig = {
'VALID_ARCHS' => 'arm64 x86_64 arm64_32' # Valid architectures
}
end