Skip to content

Commit deaf0cc

Browse files
Merge pull request #21 from getyoti/DEP-162
[DEP-162] Bump up Yoti SDK version to 2.4.0 & add new Sup.Docs. module
2 parents 80a3839 + 577b116 commit deaf0cc

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [2.4.0] - 2020-09-23
4+
### Added
5+
- Supplementary documents functionality: Integrators will now be able to verify the user's address by supplementary documents module integration.
6+
Documents supported: Utility Bill, Council Tax Bill & Phone Bill.
7+
- New ID documents supported: Filipino Professional ID & Voter ID
8+
39
## [2.3.2] - 2020-08-03
410
### Added
511
- Support Filipino Professional ID & Voter ID

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,13 @@ Add modules you require to your build.gradle:
5252
```groovy
5353
dependencies {
5454
//If you need document capture
55-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.3.2'
55+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.4.0'
56+
57+
//If you need supplementary documents
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.4.0'
5659
5760
//If you need liveness
58-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.3.2'
61+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.4.0'
5962
}
6063
```
6164

@@ -187,6 +190,8 @@ class MainActivity : AppCompatActivity() {
187190
| 5006 | Unexpected liveness error | No |
188191
| 6000 | Document Capture dependency not found error | No |
189192
| 6001 | Liveness Zoom dependency not found error | No |
193+
| 6002 | Supplementary document dependency not found error | No |
194+
190195

191196
## Customisation
192197
You can customise the appearance of the screens of the SDK by overriding some of the colours.

app/build.gradle

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44

55
android {
6-
compileSdkVersion 29
6+
compileSdkVersion 30
77
defaultConfig {
88
applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample"
99
minSdkVersion 21
10-
targetSdkVersion 29
10+
targetSdkVersion 30
1111
versionCode 1
1212
versionName "1.0"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -39,9 +39,11 @@ android {
3939
dependencies {
4040
implementation fileTree(dir: 'libs', include: ['*.jar'])
4141
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
42-
implementation 'androidx.appcompat:appcompat:1.1.0'
43-
implementation 'androidx.core:core-ktx:1.3.0'
42+
implementation 'androidx.appcompat:appcompat:1.2.0'
43+
implementation 'androidx.core:core-ktx:1.3.1'
44+
45+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.4.0'
46+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.4.0'
47+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.4.0'
4448

45-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.3.2'
46-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.3.2'
4749
}

0 commit comments

Comments
 (0)