-
Notifications
You must be signed in to change notification settings - Fork 6
/
MNCIdentifier.podspec
39 lines (27 loc) · 1.36 KB
/
MNCIdentifier.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
34
35
36
37
38
39
Pod::Spec.new do |spec|
spec.name = "MNCIdentifier"
spec.version = "1.1.11"
spec.summary = "iOS SDK platforms for KYC verification services."
spec.description = "This KYC SDK involves steps to establish customer identity thorough liveness detection."
spec.homepage = "https://mobile.mncinnovation.id/docs/mncidentifier/overview/"
spec.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
spec.author = { "Ihksan Sukmawan" => "ihksan.sukmawan@mncgroup.com", "Ari Fajrianda Alfi" => "ari.alfi@mncgroup.com" }
spec.platform = :ios
spec.ios.deployment_target = "11.0"
spec.source = { :git => "https://github.com/mncinnovation/mnc-identifiersdk-ios.git", :tag => "#{spec.version}" }
spec.framework = "UIKit"
spec.default_subspec = 'OCR'
spec.subspec 'Face' do |face|
face.vendored_frameworks = "MNCFaceIdentifier.xcframework"
face.dependency 'GoogleMLKit/FaceDetection', '4.0.0'
end
spec.subspec 'OCR' do |ocr|
ocr.vendored_frameworks = "MNCOCRIdentifier.xcframework"
ocr.dependency 'GoogleMLKit/TextRecognition', '4.0.0'
ocr.dependency 'GoogleMLKit/ObjectDetection', '4.0.0'
end
spec.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
}
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end