Skip to content

Commit

Permalink
Merge pull request #53 from getyoti/DEP-546
Browse files Browse the repository at this point in the history
[DEP-546] Release 3.5.1
  • Loading branch information
mariasenosiain authored Oct 21, 2024
2 parents 7f0ca99 + c51f267 commit 116a9df
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.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'
}
```

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 350
versionName "3.5.0"
versionCode 351
versionName "3.5.1"
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.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'
}

0 comments on commit 116a9df

Please sign in to comment.