Skip to content

Commit

Permalink
Release 12.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iProovBot committed Oct 10, 2024
1 parent f458a97 commit 83188ce
Show file tree
Hide file tree
Showing 45 changed files with 161 additions and 148 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- Alamofire (5.8.0)
- iProov (12.1.0)
- iProov (12.2.0)
- iProovAPIClient (2.0.0):
- Alamofire (~> 5.0)
- MBProgressHUD (1.2.0)
Expand All @@ -23,7 +23,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Alamofire: 0e92e751b3e9e66d7982db43919d01f313b8eb91
iProov: 6142724a64b909c65abcca7376d1565e4f84804e
iProov: 6c62b7e77e76523da8bf3aae759c1ed168034a5b
iProovAPIClient: a4a2013ea8429cf94c39ed1d4398fee0af8dd584
MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "iProov",
url: "https://github.com/iProov/ios/releases/download/12.1.0/iProov.xcframework.zip",
checksum: "903f3dac0e6fbeea83a0cdafb1125eedf5257ad616d98c1c9e71161af65faaa5"
url: "https://github.com/iProov/ios/releases/download/12.2.0/iProov.xcframework.zip",
checksum: "51a44732ec32c4330255b8d5ea8c53c51a180e7a31c6530f09a98e14de21f472"
),
.target(
name: "iProovTargets",
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![iProov: Flexible authentication for identity assurance](https://github.com/iProov/ios/raw/master/images/banner.jpg)

# iProov Biometrics iOS SDK v12.1.0
# iProov Biometrics iOS SDK v12.2.0

## Introduction

Expand Down Expand Up @@ -82,7 +82,7 @@ Integration with your app is supported via CocoaPods, Swift Package Manager, and
https://github.com/iProov/ios
```

3. Set the _Dependency Rule_ to be _Up to Next Major Version_ and input 12.1.0 as the lower bound.
3. Set the _Dependency Rule_ to be _Up to Next Major Version_ and input 12.2.0 as the lower bound.

3. Click _Add Package_ to add the iProov SDK to your Xcode project and then click again to confirm.

Expand All @@ -94,7 +94,7 @@ If you prefer, you can add iProov via your Package.swift file as follows:
.package(
name: "iProov",
url: "https://github.com/iProov/ios.git",
.upToNextMajor(from: "12.1.0")
.upToNextMajor(from: "12.2.0")
),
```

Expand Down Expand Up @@ -176,7 +176,7 @@ Then add `iProov` to the `dependencies` array of any target for which you wish t

3. Select the **General** tab and then scroll down to **Frameworks, Libraries, and Embedded Content**.

4. Add `iProov.xcframework` from the [release assets](https://github.com/iProov/ios/releases/tag/12.1.0).
4. Add `iProov.xcframework` from the [release assets](https://github.com/iProov/ios/releases/tag/12.2.0).

> **Note**: Ensure you add the .xcframework file, rather than the .framework file.

Expand Down Expand Up @@ -395,6 +395,7 @@ GPA-specific options can be set under `Options.genuinePresenceAssurance`:
| --- | --- | --- |
| `notReadyOvalStrokeColor` | Color for oval stroke when in a GPA "not ready" state. | `.white` |
| `readyOvalStrokeColor`| Color for oval stroke when in the GPA "ready" state. | #01AC41 |
| `controlYPosition` | Whether to control y position of the face through showing prompts when using GPA. | false

### Liveness Assurance Options

Expand Down Expand Up @@ -517,7 +518,7 @@ Errors are caught via the `.error(error)` enum case in the callback. The `error`
|---|---|
| `captureAlreadyActive` | An existing iProov capture is already in progress. Wait until the current capture completes before starting a new one. |
| `cameraPermissionDenied ` | The user disallowed access to the camera when prompted. You should direct the user to re-enable camera access via Settings. |
| `consentRequired ` | The user has not granted consent. |
| `consentRequired ` | The user has not granted consent. For iProov internal use only. You can safely ignore. |
| `networkError(String?)` | An error occurred with the video streaming process. The associated string (if available) will contain further information about the error. |
| `serverError(String?)` | A server-side error/token invalidation occurred. The associated string (if available) will contain further information about the error. |
| `unexpectedError(String)` | An unexpected and unrecoverable error has occurred. The associated string will contain further information about the error. These errors should be reported to iProov for further investigation. |
Expand Down
3 changes: 2 additions & 1 deletion carthage/IProov.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@
"11.1.0": "https://github.com/iProov/ios/releases/download/11.1.0/iProov.framework.zip?alt=https://github.com/iProov/ios/releases/download/11.1.0/iProov.xcframework.zip",
"11.1.1": "https://github.com/iProov/ios/releases/download/11.1.1/iProov.framework.zip?alt=https://github.com/iProov/ios/releases/download/11.1.1/iProov.xcframework.zip",
"12.0.0": "https://github.com/iProov/ios/releases/download/12.0.0/iProov.xcframework.zip",
"12.1.0": "https://github.com/iProov/ios/releases/download/12.1.0/iProov.xcframework.zip"
"12.1.0": "https://github.com/iProov/ios/releases/download/12.1.0/iProov.xcframework.zip",
"12.2.0": "https://github.com/iProov/ios/releases/download/12.2.0/iProov.xcframework.zip"
}
2 changes: 1 addition & 1 deletion iProov.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'iProov'
s.version = '12.1.0'
s.version = '12.2.0'
s.summary = 'Biometric Face Verification for Remote Identity Assurance'
s.homepage = 'https://www.iproov.com/'
s.license = { :type => 'commercial', :file => 'LICENSE.md' }
Expand Down
Binary file modified iProov.xcframework/_CodeSignature/CodeDirectory
Binary file not shown.
Binary file modified iProov.xcframework/_CodeSignature/CodeRequirements-1
Binary file not shown.
Loading

0 comments on commit 83188ce

Please sign in to comment.