File tree Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
9
## [ 2.3.2] - 2020-08-03
4
10
### Added
5
11
- Support Filipino Professional ID & Voter ID
Original file line number Diff line number Diff line change @@ -52,10 +52,13 @@ Add modules you require to your build.gradle:
52
52
``` groovy
53
53
dependencies {
54
54
//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'
56
59
57
60
//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 '
59
62
}
60
63
```
61
64
@@ -187,6 +190,8 @@ class MainActivity : AppCompatActivity() {
187
190
| 5006 | Unexpected liveness error | No |
188
191
| 6000 | Document Capture dependency not found error | No |
189
192
| 6001 | Liveness Zoom dependency not found error | No |
193
+ | 6002 | Supplementary document dependency not found error | No |
194
+
190
195
191
196
## Customisation
192
197
You can customise the appearance of the screens of the SDK by overriding some of the colours.
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
3
3
apply plugin : ' kotlin-android-extensions'
4
4
5
5
android {
6
- compileSdkVersion 29
6
+ compileSdkVersion 30
7
7
defaultConfig {
8
8
applicationId " com.yoti.mobile.android.sdk.yotidocscan.sample"
9
9
minSdkVersion 21
10
- targetSdkVersion 29
10
+ targetSdkVersion 30
11
11
versionCode 1
12
12
versionName " 1.0"
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -39,9 +39,11 @@ android {
39
39
dependencies {
40
40
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
41
41
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'
44
48
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'
47
49
}
You can’t perform that action at this time.
0 commit comments