Skip to content

Commit 48b8553

Browse files
authored
Merge pull request #45 from getyoti/DEP-399
[DEP-399] Release 3.1.1
2 parents 2d71ed2 + 6cc468e commit 48b8553

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [3.1.1] - 2023-07-12
4+
### Changed
5+
- General bug fixes.
6+
37
## [3.1.0] - 2023-05-18
48
### Added
59
- New document types supported: CitizenCard, Post Office PASS Card, SCIS and Canadian Health card

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ Add modules you require to your build.gradle:
5555
```groovy
5656
dependencies {
5757
//If you need document capture
58-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.0'
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.1'
5959
6060
//If you need supplementary documents
61-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.0'
61+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.1'
6262
6363
//If you need liveness
64-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.0'
64+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.1'
6565
6666
//If you need selfie capture
67-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.0'
67+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.1'
6868
//Or if you want the version without an embedded AI model, which is ~20 MB smaller in size
69-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.0'
69+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.1'
7070
}
7171
```
7272

app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample"
88
minSdkVersion 21
99
targetSdkVersion 31
10-
versionCode 310
11-
versionName "3.1.0"
10+
versionCode 311
11+
versionName "3.1.1"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414

@@ -46,11 +46,11 @@ dependencies {
4646
implementation 'androidx.appcompat:appcompat:1.4.1'
4747
implementation 'androidx.core:core-ktx:1.7.0'
4848

49-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.0'
50-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.0'
51-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.0'
49+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.1'
50+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.1'
51+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.1'
5252
// Version with an embedded AI model
53-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.0'
53+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.1'
5454
// Alternative version without an embedded AI model, ~20 MB smaller in size
55-
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.0'
55+
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.1'
5656
}

0 commit comments

Comments
 (0)