Skip to content

Commit

Permalink
Merge pull request #49 from getyoti/DEP-452
Browse files Browse the repository at this point in the history
[DEP-452] Release 3.2.2
  • Loading branch information
mircea-yoti authored Feb 1, 2024
2 parents 14892bd + cfddbee commit 832554e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down Expand Up @@ -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'
}

0 comments on commit 832554e

Please sign in to comment.