Skip to content

Commit a12f07a

Browse files
authored
Merge pull request #42 from getyoti/DEP-379
[DEP-379] Release 3.0.1
2 parents 56e1ba9 + 612e428 commit a12f07a

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.0.1] - 2023-04-03
4+
### Changed
5+
Hotfix: Removed unused resources
6+
37
## [3.0.0] - 2023-02-27
48
### Added
59
- New language support for Arabic, Dutch, French, German, Italian, Russian, Spanish and Turkish

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

0 commit comments

Comments
 (0)