Skip to content

Commit c51f267

Browse files
Bump up SDK version to 3.5.1
- Update SDK libraries - Update README.md & CHANGELOG.md Related to DEP-546
1 parent 3a85934 commit c51f267

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [3.5.1] - 2024-10-18
4+
- New document supported: USA Passport card
5+
- Updated internal dependency version
6+
37
## [3.5.0] - 2024-09-17
48
## Changed
59
- Updated illustrations

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ Add modules you require to your build.gradle:
5555
```groovy
5656
dependencies {
5757
//If you need document capture
58-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.0'
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.1'
5959
//Or if you want the version without OCR and NFC capture, which is ~15Mb smaller in size
60-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.0'
60+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.1'
6161
6262
//If you need supplementary documents
63-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.0'
63+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.1'
6464
6565
//If you need liveness
66-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.0'
66+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.1'
6767
6868
//If you need selfie capture
69-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.0'
69+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1'
7070
//Or if you want the version without an embedded AI model, which is ~20 MB smaller in size
71-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.0'
71+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.1'
7272
}
7373
```
7474

app/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample"
88
minSdkVersion 21
99
targetSdkVersion 33
10-
versionCode 350
11-
versionName "3.5.0"
10+
versionCode 351
11+
versionName "3.5.1"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414

@@ -46,13 +46,13 @@ dependencies {
4646
implementation 'androidx.appcompat:appcompat:1.4.1'
4747
implementation 'androidx.core:core-ktx:1.7.0'
4848

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

0 commit comments

Comments
 (0)