Skip to content

Commit 0cbbeb9

Browse files
committed
Release 4.1.0 - Bump up SDK version to 4.1.0
Related to DEP-597
1 parent 0ca2ad3 commit 0cbbeb9

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [4.1.0] - 2025-06-11
4+
### Changed
5+
- Significant improvements to the face capture and static liveness flows by allowing the capture
6+
education/guidance screen and upload flow completion screen to be skipped
7+
- Removed intro screen for single step flows
8+
- Removed capture review screen for static liveness capture
9+
- Updated several illustrations
10+
- Several bug fixes and code improvements
11+
312
## [4.0.0] - 2025-03-11
413
### Changed
514
- Document processing improvements. This introduces a small breaking change for users of the

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ You have setup the Yoti Doc Scan SDK on your backend, you can find the documenta
2626

2727
Minimum Android version supported: 21
2828

29-
Currently targeting Android version: 33
30-
3129
Note: we are using libraries from Android Jetpack. If you are still using the original Android Support Libraries you may encounter some issues when trying to use our SDK.
3230
We strongly recommend you to migrate your app to the new Androidx libraries: https://developer.android.com/jetpack/androidx/migrate
3331

@@ -59,20 +57,20 @@ Add modules you require to your build.gradle:
5957
```groovy
6058
dependencies {
6159
//If you need document capture
62-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:4.0.0'
60+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:4.1.0'
6361
//Or if you want the version without OCR and NFC capture, which is ~15Mb smaller in size
64-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:4.0.0'
62+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:4.1.0'
6563
6664
//If you need supplementary documents
67-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:4.0.0'
65+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:4.1.0'
6866
6967
//If you need liveness
70-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:4.0.0'
68+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:4.1.0'
7169
7270
//If you need selfie capture
73-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:4.0.0'
71+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:4.1.0'
7472
//Or if you want the version without an embedded AI model, which is ~20 MB smaller in size
75-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:4.0.0'
73+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:4.1.0'
7674
}
7775
```
7876

app/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample"
1010
minSdkVersion 21
1111
targetSdkVersion 33
12-
versionCode 400
13-
versionName "4.0.0"
12+
versionCode 410
13+
versionName "4.1.0"
1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
1616

@@ -48,13 +48,13 @@ dependencies {
4848
implementation 'androidx.appcompat:appcompat:1.4.1'
4949
implementation 'androidx.core:core-ktx:1.7.0'
5050

51-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:4.0.0'
51+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:4.1.0'
5252
// Alternative version without OCR and NFC capture, ~15Mb smaller in size
53-
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:4.0.0'
54-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:4.0.0'
55-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:4.0.0'
53+
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:4.1.0'
54+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:4.1.0'
55+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:4.1.0'
5656
// Version with an embedded AI model
57-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:4.0.0'
57+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:4.1.0'
5858
// Alternative version without an embedded AI model, ~20 MB smaller in size
59-
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:4.0.0'
59+
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:4.1.0'
6060
}

0 commit comments

Comments
 (0)