Skip to content

Commit

Permalink
Release 12.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iProovBot committed Sep 30, 2024
1 parent 8b9dea2 commit f458a97
Show file tree
Hide file tree
Showing 52 changed files with 378 additions and 184 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.0.0)
- iProov (12.1.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: 1921d2fdbd8f8fa24d4694c2150c2c0bac0371a6
iProov: 6142724a64b909c65abcca7376d1565e4f84804e
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.0.0/iProov.xcframework.zip",
checksum: "f1eb0a3c585ea677401054943e34b15b16d21e45c1b1bdc8654dba438e02e612"
url: "https://github.com/iProov/ios/releases/download/12.1.0/iProov.xcframework.zip",
checksum: "903f3dac0e6fbeea83a0cdafb1125eedf5257ad616d98c1c9e71161af65faaa5"
),
.target(
name: "iProovTargets",
Expand Down
9 changes: 5 additions & 4 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.0.0
# iProov Biometrics iOS SDK v12.1.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.0.0 as the lower bound.
3. Set the _Dependency Rule_ to be _Up to Next Major Version_ and input 12.1.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.0.0")
.upToNextMajor(from: "12.1.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.0.0).
4. Add `iProov.xcframework` from the [release assets](https://github.com/iProov/ios/releases/tag/12.1.0).

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

Expand Down Expand Up @@ -517,6 +517,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. |
| `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 @@ -62,5 +62,6 @@
"11.0.3": "https://github.com/iProov/ios/releases/download/11.0.3/iProov.framework.zip?alt=https://github.com/iProov/ios/releases/download/11.0.3/iProov.xcframework.zip",
"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.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"
}
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.0.0'
s.version = '12.1.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
10 changes: 5 additions & 5 deletions iProov.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@
<key>BinaryPath</key>
<string>iProov.framework/iProov</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>iProov.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>iProov.framework/iProov</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>iProov.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
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 f458a97

Please sign in to comment.