From c51f2676d6033017ac0f8037c7d397072f29b052 Mon Sep 17 00:00:00 2001 From: Maria Senosiain Date: Fri, 18 Oct 2024 11:43:52 +0100 Subject: [PATCH] Bump up SDK version to 3.5.1 - Update SDK libraries - Update README.md & CHANGELOG.md Related to DEP-546 --- CHANGELOG.md | 4 ++++ README.md | 12 ++++++------ app/build.gradle | 16 ++++++++-------- 3 files changed, 18 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de37c69..fdc833c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. +## [3.5.1] - 2024-10-18 +- New document supported: USA Passport card +- Updated internal dependency version + ## [3.5.0] - 2024-09-17 ## Changed - Updated illustrations diff --git a/README.md b/README.md index ac22b94..b2c1e60 100644 --- a/README.md +++ b/README.md @@ -55,20 +55,20 @@ Add modules you require to your build.gradle: ```groovy dependencies { //If you need document capture - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.1' //Or if you want the version without OCR and NFC capture, which is ~15Mb smaller in size - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.1' //If you need supplementary documents - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.1' //If you need liveness - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.1' //If you need selfie capture - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1' //Or if you want the version without an embedded AI model, which is ~20 MB smaller in size - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.1' } ``` diff --git a/app/build.gradle b/app/build.gradle index c35eba7..7524103 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample" minSdkVersion 21 targetSdkVersion 33 - versionCode 350 - versionName "3.5.0" + versionCode 351 + versionName "3.5.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -46,13 +46,13 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'androidx.core:core-ktx:1.7.0' - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.1' // Alternative version without OCR and NFC capture, ~15Mb smaller in size -// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.0' - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.0' - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.0' +// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.1' // Version with an embedded AI model - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.0' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1' // Alternative version without an embedded AI model, ~20 MB smaller in size -// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.0' +// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.1' }