From cfddbeea973f6cf5e2134c6b031564aa091ab1da Mon Sep 17 00:00:00 2001 From: Mircea Bucerzan Date: Wed, 31 Jan 2024 19:06:43 +0200 Subject: [PATCH] Release 3.2.2 - Bump up SDK version to 3.2.2 Related to DEP-452 --- CHANGELOG.md | 6 ++++++ README.md | 10 +++++----- app/build.gradle | 14 +++++++------- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22b2531..04d0d5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [3.2.2] - 2024-01-31 +### Changed +- Updated licence keys. +- Updated proguard rules. +- Bug fixes and code improvements. + ## [3.2.1] - 2023-11-14 ### Changed - Updated internal dependency version. diff --git a/README.md b/README.md index f7788be..e53ccee 100644 --- a/README.md +++ b/README.md @@ -55,18 +55,18 @@ 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.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.2.2' //If you need supplementary documents - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.2.2' //If you need liveness - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.2.2' //If you need selfie capture - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.2.2' //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.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.2.2' } ``` diff --git a/app/build.gradle b/app/build.gradle index d7bd751..013b3d2 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 32 - versionCode 321 - versionName "3.2.1" + versionCode 322 + versionName "3.2.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -46,11 +46,11 @@ 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.2.1' - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.2.1' - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.2.2' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.2.2' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.2.2' // Version with an embedded AI model - implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.2.1' + implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.2.2' // Alternative version without an embedded AI model, ~20 MB smaller in size -// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.2.1' +// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.2.2' }