Skip to content

Commit

Permalink
Merge pull request #45 from getyoti/DEP-399
Browse files Browse the repository at this point in the history
[DEP-399] Release 3.1.1
  • Loading branch information
mircea-yoti authored Jul 12, 2023
2 parents 2d71ed2 + 6cc468e commit 48b8553
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 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.1.1] - 2023-07-12
### Changed
- General bug fixes.

## [3.1.0] - 2023-05-18
### Added
- New document types supported: CitizenCard, Post Office PASS Card, SCIS and Canadian Health card
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.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.1'
//If you need supplementary documents
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.1'
//If you need liveness
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.1'
//If you need selfie capture
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.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.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.1'
}
```

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 31
versionCode 310
versionName "3.1.0"
versionCode 311
versionName "3.1.1"
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.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.1'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.1'
// Version with an embedded AI model
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.0'
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.1'
// Alternative version without an embedded AI model, ~20 MB smaller in size
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.0'
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.1'
}

0 comments on commit 48b8553

Please sign in to comment.