Skip to content

Commit b68e13f

Browse files
Merge pull request #22 from regulaforensics/api-deprecated-update
API deprecated update
2 parents b2a2d08 + a33095d commit b68e13f

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

Catalog/Items/Basic/MatchFacesRequestItem.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ final class MatchFacesRequestViewController: UIViewController {
5454
}()
5555

5656
let secondImageDetectAllSwitch = UISwitch()
57-
let thumbnailsSwitch = UISwitch()
5857

5958
private var firstImage: MatchFacesImage?
6059
private var secondImage: MatchFacesImage?
@@ -156,7 +155,6 @@ final class MatchFacesRequestViewController: UIViewController {
156155

157156
root.addArrangedSubview(similarityLabel)
158157
root.addArrangedSubview(imagesContainer)
159-
root.addArrangedSubview(makeOptionsRow(text: "Thumbnails", switchView: thumbnailsSwitch))
160158
root.addArrangedSubview(matchFacesButton)
161159
root.addArrangedSubview(clearButton)
162160
}
@@ -271,7 +269,6 @@ final class MatchFacesRequestViewController: UIViewController {
271269
}
272270

273271
let request = MatchFacesRequest(images: [firstImage, secondImage])
274-
request.thumbnails = thumbnailsSwitch.isOn
275272

276273
self.similarityLabel.text = "Processing..."
277274
self.matchFacesButton.isEnabled = false

FaceCertificatePinning/Podfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
target 'FaceCertificatePinning' do
55
# Comment the next line if you don't want to use dynamic frameworks
66
use_frameworks!
7-
pod 'FaceCoreSDK', '~> 5.2'
8-
pod 'FaceSDK', '~> 5.2'
9-
7+
pod 'FaceSDK', '~> 6.1'
8+
pod 'FaceCoreBasic', '~> 6.1'
109
end

FaceMatchOffline-sample/Podfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ target 'FaceMatchOffline-sample' do
55
# Comment the next line if you don't want to use dynamic frameworks
66
use_frameworks!
77

8-
pod 'FaceCoreSDK', '~> 5.2'
9-
pod 'FaceSDK', '~> 5.2'
10-
8+
pod 'FaceSDK', '~> 6.1'
9+
pod 'FaceCoreMatch', '~> 6.1'
1110
end

FaceSwiftUI-sample/Podfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
source 'http://gitlab.regula.local/mobile-sdk/podspecs.git'
21
source 'https://cdn.cocoapods.org/'
32

43
target 'FaceSwiftUI-sample' do
54
# Comment the next line if you don't want to use dynamic frameworks
65
use_frameworks!
76

87
# Pods for FaceSwiftUI-sample
9-
pod 'FaceSDK', '~> 5.2'
10-
pod 'FaceCoreSDK', '~> 5.2'
8+
pod 'FaceSDK', '~> 6.1'
9+
pod 'FaceCoreBasic', '~> 6.1'
1110
end

Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ platform :ios, '11.0'
44
use_frameworks!
55

66
target 'Catalog' do
7-
pod 'FaceSDK', '~> 5.2'
8-
pod 'FaceCoreSDK', '~> 5.2'
7+
pod 'FaceSDK', '~> 6.1'
8+
pod 'FaceCoreBasic', '~> 6.1'
99
end

0 commit comments

Comments
 (0)