-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHyperKYC.podspec
42 lines (37 loc) · 1.74 KB
/
HyperKYC.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
40
41
42
Pod::Spec.new do |s|
s.name = 'HyperKYC'
s.version = '0.40.1'
s.summary = "HyperVerge's iOS Framework for capturing documents and faces to be used with our AI Engines"
s.description = <<-DESC
HyperKyc SDK can be used to create Global DKYC workflows to capture images of ID cards, photos of the face of the user, and perform other operations like face matches, etc all within itself to ease up integration friction on the client end.
DESC
s.homepage = 'https://github.com/hyperverge/HyperKYC'
s.author = 'HyperVerge'
s.license = {
:type => 'Custom',
:file => 'LICENSE'
}
s.source = {
:git => "https://github.com/hyperverge/HyperKYC.git",
:tag => "#{s.version}"
}
s.static_framework = true
s.platform = :ios
s.ios.deployment_target = '11.0'
s.swift_version = '5.4'
s.default_subspecs = "Core"
s.subspec 'Core' do |cs|
cs.dependency 'HyperSnapSDK', '4.31.1'
cs.dependency 'MaterialComponents/TextControls+OutlinedTextFields'
cs.dependency 'MaterialComponents/TextControls+OutlinedTextAreas'
cs.vendored_frameworks = 'Core/HyperKYC.xcframework'
cs.ios.resource = 'Core/HyperKYCResources.bundle'
end
s.subspec 'DocDetect' do |dds|
dds.dependency 'HyperSnapSDK/DocDetect', '4.31.1'
dds.dependency 'MaterialComponents/TextControls+OutlinedTextFields'
dds.dependency 'MaterialComponents/TextControls+OutlinedTextAreas'
dds.vendored_frameworks = 'DocDetect/HyperKYC.xcframework'
dds.ios.resource = 'DocDetect/HyperKYCResources.bundle'
end
end