Skip to content

Commit 6070be7

Browse files
authored
Merge pull request #43 from getyoti/DEP-390
[DEP-390] Release 3.1.0
2 parents a12f07a + a48908a commit 6070be7

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [3.1.0] - 2023-05-18
4+
### Added
5+
- New document types supported: CitizenCard, Post Office PASS Card, SCIS and Canadian Health card
6+
7+
### Changed
8+
- Updated the copy on the dead end screens.
9+
- Changed the label for Canadian residence permit.
10+
- General bug fixes and code improvements.
11+
312
## [3.0.1] - 2023-04-03
413
### Changed
514
Hotfix: Removed unused resources

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.0.1'
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:3.1.0'
5959
6060
//If you need supplementary documents
61-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.0.1'
61+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.1.0'
6262
6363
//If you need liveness
64-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.0.1'
64+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.1.0'
6565
6666
//If you need selfie capture
67-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.0.1'
67+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.0'
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.0.1'
69+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.0'
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 301
11-
versionName "3.0.1"
10+
versionCode 310
11+
versionName "3.1.0"
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.0.1'
50-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:3.0.1'
51-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:3.0.1'
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'
5252
// Version with an embedded AI model
53-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.0.1'
53+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:3.1.0'
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.0.1'
55+
// implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:3.1.0'
5656
}

0 commit comments

Comments
 (0)