Skip to content

Commit dc53fff

Browse files
Merge pull request #54 from getyoti/DEP-564
[DEP-564] Release v3.5.2
2 parents 116a9df + 9384a63 commit dc53fff

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [3.5.2] - 2024-09-12
4+
- Updated internal dependency version
5+
36
## [3.5.1] - 2024-10-18
47
- New document supported: USA Passport card
58
- Updated internal dependency version

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.1'
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.2'
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.1'
60+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.2'
6161
6262
//If you need supplementary documents
63-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.1'
63+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.2'
6464
6565
//If you need liveness
66-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.1'
66+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.2'
6767
6868
//If you need selfie capture
69-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1'
69+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.2'
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.1'
71+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.2'
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 351
11-
versionName "3.5.1"
10+
versionCode 352
11+
versionName "3.5.2"
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.1'
49+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.2'
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.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'
51+
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.2'
52+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.2'
53+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.2'
5454
// Version with an embedded AI model
55-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1'
55+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.2'
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.1'
57+
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.2'
5858
}

0 commit comments

Comments
 (0)