-
Notifications
You must be signed in to change notification settings - Fork 0
/
LivenessSDK.podspec
24 lines (20 loc) · 1015 Bytes
/
LivenessSDK.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
Pod::Spec.new do |spec|
spec.name = "LivenessSDK"
spec.version = "2.2.0"
spec.summary = "Nodeflux Face Liveness SDK for iOS apps"
spec.description = "Please use this SDK to integrate your iOS App with Nodeflux Face Liveness"
spec.homepage = "..."
spec.documentation_url = "..."
spec.license = { :type => "MIT" }
spec.author = { "Nodeflux" => "developer@nodeflux.io" }
spec.source = { :git => 'https://github.com/nodefluxio/ios-sdk-face-liveness.git', :tag => "#{spec.version}" }
spec.swift_version = "5.3"
# Published binaries
spec.vendored_frameworks = 'LivenessSDK.xcframework'
spec.preserve_paths = 'LivenessSDK.xcframework'
# Supported deployment targets
spec.platform = :ios, "11.0"
# pod depedency
spec.dependency 'GoogleMLKit/FaceDetection', '~> 2.5.0'
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end