Skip to content

Commit

Permalink
Merge pull request #54 from getyoti/DEP-564
Browse files Browse the repository at this point in the history
[DEP-564] Release v3.5.2
  • Loading branch information
mariasenosiain authored Dec 9, 2024
2 parents 116a9df + 9384a63 commit dc53fff
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog
All notable changes to this project will be documented in this file.
## [3.5.2] - 2024-09-12
- Updated internal dependency version

## [3.5.1] - 2024-10-18
- New document supported: USA Passport card
- Updated internal dependency version
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.2'
//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.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.2'
//If you need supplementary documents
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.2'
//If you need liveness
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.2'
//If you need selfie capture
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.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.5.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.2'
}
```

Expand Down
16 changes: 8 additions & 8 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 33
versionCode 351
versionName "3.5.1"
versionCode 352
versionName "3.5.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -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.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.5.2'
// Alternative version without OCR and NFC capture, ~15Mb smaller in size
// 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'
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:3.5.2'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.5.2'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.5.2'
// Version with an embedded AI model
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.5.2'
// Alternative version without an embedded AI model, ~20 MB smaller in size
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.1'
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.5.2'
}

0 comments on commit dc53fff

Please sign in to comment.