README.md 10.2 KB
Newer Older
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# MyId Android SDK

## Table of contents

- [Getting started](#getting-started)
  - [Before you begin](#11-before-you-begin)
  - [Setup MyId Android SDK](#12-setup-myid-android-sdk)
  - [Permissions](#13-permissions)
- [Usage](#usage)
  - [Methods](#11-methods)
  - [Handling callbacks](#12-handling-callbacks)
- [SDK error codes](#sdk-error-codes)
- [Localization](#localization)

## Getting started

### 1.1 Before you begin

Install or update Android Studio to its latest version.

The SDK supports API level 21 and above

Make sure that your app meets the following requirements:

- `minSdkVersion = 21`
- `targetSdkVersion = 31`
- `android.useAndroidX = true`
- `Kotlin = 1.5+`
- `Gradle = 4.1.2+`

```
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
```

- myid-sdk-***.aar, has been provided to you, it contains SDK public interface and implementation.
  Archive name contains ever increasing release version number.

### 1.2 Setup MyId Android SDK

Create new project in AndroidStudio. Inside mobile application folder create new folder to store SDK
libraries (For example libs) and copy MyId SDK provided libraries.

Add reference to library to module **_build.gradle_**:

``` gradle
Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
49
implementation(files("libs/myid-sdk-2.1.0-release.aar"))
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
50
```
Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
51
**Note:** You can get `myid-sdk-2.1.0-release.aar` file from [here](app/libs/myid-sdk-2.1.0-release.aar)
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
52

Javokhir Savriev's avatar
2.0.8    
Javokhir Savriev committed
53
After synchronization, You should be able to access to SDK classes from your source code.
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
54
55
56
57

MyId Android SDK also requires following libraries to be added:

``` gradle
Javokhir Savriev's avatar
2.0.8    
Javokhir Savriev committed
58
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
59
60
61
62

implementation("androidx.core:core-ktx:1.8.0")
implementation("androidx.appcompat:appcompat:1.4.2")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
Javohir Savriy's avatar
2.0.9    
Javohir Savriy committed
63
64
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100

def cameraVersion = "1.2.0-alpha01"
implementation("androidx.camera:camera-camera2:$cameraVersion")
implementation("androidx.camera:camera-lifecycle:$cameraVersion")
implementation("androidx.camera:camera-view:$cameraVersion")

implementation("com.google.android.gms:play-services-mlkit-face-detection:17.0.1")
implementation("com.google.android.gms:play-services-mlkit-text-recognition:18.0.0")
implementation("com.google.android.gms:play-services-mlkit-barcode-scanning:18.0.0")

implementation("io.ktor:ktor-client-android:2.0.1")
implementation("io.sentry:sentry-android:5.7.4")
```

### 1.3 Permissions

Add following lines to the **_AndroidManifest.xml_**:

``` xml
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
```

## Usage

``` kotlin
class YourActivity : AppCompatActivity(), MyIdResultListener {

    private val client: MyIdClient = MyIdClient()

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        startMyId()
    }

    private fun startMyId() {
Javohir Savriy's avatar
2.0.9    
Javohir Savriy committed
101
102
103
104
105
        val organizationDetails = OrganizationDetails(
            phoneNumber = "1234567",
            logo = R.drawable.image_logo
        )
        
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
106
107
108
109
        val myIdConfig = MyIdConfig.builder(clientId = /* Your client id */)
            .withPassportData(passportData)
            .withBirthDate(dateOfBirth)
            .withExternalId(externalId)
Javohir Savriy's avatar
2.0.9    
Javohir Savriy committed
110
            .withThreshold(threshold)
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
111
            .withEntryType(MyIdEntryType.AUTH)
Javohir Savriy's avatar
2.0.9    
Javohir Savriy committed
112
            .withOrganizationDetails(organizationDetails)
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
            .withBuildMode(MyIdBuildMode.PRODUCTION)
            .withPhoto(false)
            .build()

        val intent = client.createIntent(activity = this, myIdConfig = myIdConfig)
        result.launch(intent)
    }

    private val result = takeUserResult(listener = this)
}
```

### 1.1 Methods

Method | Notes | Default
--- | --- | ---
`withPassportData(value: String)` | Passport serial number or PINFL data | Optional
`withBirthDate(value: String)` | Date of birth in. Format: `dd.MM.yyyy` | Optional
`withExternalId(value: String)` | 36 characters long. Should match with UUID4 regex | Optional
Javohir Savriy's avatar
Javohir Savriy committed
132
`withThreshold(value: Float)` | The value can be in the range of `0.50` - `0.99` | 0.50
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
133
`withEntryType(value: MyIdEntryType)` | Customizing the SDK. Entry types: AUTH, FACE | MyIdEntryType.AUTH
Javohir Savriy's avatar
Javohir Savriy committed
134
`withOrganizationDetails(value: OrganizationDetails)` | Custom Organization Details | Optional
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
`withBuildMode(value: MyIdBuildMode)` | Build mode: DEBUG, PRODUCTION | MyIdBuildMode.PRODUCTION
`withPhoto(value: Boolean)` | Return SDK face bitmap | false

**Note 1.1.** `MyIdEntryType` contains **AUTH** and **FACE** types.

- **AUTH** is used to identify the user through the MyId services.
- **FACE** is used to detect a face and returns a picture (bitmap).

**Note 1.2.** You can customize the screen for entering passport data and date of birth in your
application, in which case you can pass these parameters during initialization to the SDK, otherwise
the SDK requires the input of passport data and date of birth for user identification.

**Note 1.3.** `MyIdBuildMode` contains **DEBUG** and **PRODUCTION** modes.

- **DEBUG** is used to sandbox.
- **PRODUCTION** is used to production.

Javokhir Savriev's avatar
2.0.8    
Javokhir Savriev committed
152
153
**Note 1.4.** If the externalId is not empty, has a length of 36 characters and corresponds to the regular expression UUID4, we will display a [recommendation](images/screen01.jpg) screen in case the sdk detects a blurry photo.

Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
154
155
156
157
### 1.2 Handling callbacks

```kotlin
val resultListener: MyIdResultListener = object : MyIdResultListener {
Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
158
159
  override fun onSuccess(result: MyIdResult) {
    // Get face bitmap and result code
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
160

Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
161
162
163
164
    val bitmap = result.bitmap
    val code = result.code
    val comparison = result.comparison
  }
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
165

Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
166
167
168
  override fun onUserExited() {
    // User left the SDK
  }
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
169

Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
170
171
  override fun onError(e: MyIdException) {
    // Get error message and code:
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
172

Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
173
174
175
    val message = e.message
    val code = e.code
  }
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
176
177
178
179
180
}
```

| Attribute     |    Notes    |
| -----|-------|
Javohir Savriy's avatar
Javohir Savriy committed
181
| `onSuccess` | `MyIdResult` contains information about the face captures made during the flow, result code and comparison value. |
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
| `onUserExited` | User left the SDK flow without completing it. |
| `onError` | Some error happened. `MyIdException` contains information about the error message and code |

## SDK error codes

The error code in the following list may appear during the call of SDK. The list below is for your
reference.

| Code   |      Error message
|:----------:|:-------------
|  2  |  Паспортные данные введены неправильно
|  3  |  Не удалось подтвердить жизненность
|  4  |  Не удалось распознать
|  5  |  Внешний сервис недоступен или работает некорректно
|  6  |  Запрашиваемый пользовател скончался
|  7  |  Фото с ресурсов не получено
|  8  |  Внутренняя ошибка MyID
|  9  |  Срок выполнения задачи истек
|  10  |  Срок ожидания задачи в очереди истек
|  11  |  Сервис MyID не может обработать запрос. Попробуйте повторить позже
|  12  |  Сервис MyID не может обработать запрос. Попробуйте повторить позже
|  13  |  Сервис MyID не может обработать запрос. Попробуйте повторить позже
|  14  |  Не удалось подтвердить жизненность. Некорректная фотография
|  15  |  Сервис MyID не может обработать запрос. Попробуйте повторить позже
|  16  |  Сервис MyID не может обработать запрос. Попробуйте повторить позже
|  17  |  Не удалось распознать. Некорректная фотография
|  18  |  Сервис проверки жизненности не может обработать запрос
|  19  |  Сервис распознования не может обработать запрос
|  20  |  Размытая фотография
|  21  |  Лицо не полностью изображено
|  22  |  Обнаружено несколько лиц
|  23  |  Представленное изображение в градациях серого, требуется цветное изображение
|  24  |  Обнаружены затемненные очки
Javokhir Savriev's avatar
2.0.8    
Javokhir Savriev committed
215
|  25  |  Тип фотографии не поддерживается
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
216
|  26  |  Глаза закрыты либо не видны
Javokhir Savriev's avatar
2.0.8    
Javokhir Savriev committed
217
|  101  |  Непредвиденная ошибка
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
218
219
|  102  |  Доступ к камере запрещен
|  103  |  Ошибка при получении данных с сервера
Javokhir Savriev's avatar
2.0.8    
Javokhir Savriev committed
220
|  120  |  Размытое фото обнаружено в SDK
Javokhir Savriev's avatar
2.0.7  
Javokhir Savriev committed
221
222
223
224
225
226
227
228
229

## Localization

The MyId Android SDK supports translations for the following languages:

- Uzbek      (uz) 🇺🇿
- English    (en) 🇬🇧
- Russian    (ru) 🇷🇺

Javokhir's avatar
Javokhir committed
230
231
232
By default, we infer the language to use from the parent app settings.

The MyId Android SDK also allows for the selection of a specific custom language for locales that MyId does not currently support. You can have an additional XML strings file inside your resources folder for the desired locale (for example, `res/values-kk/myid_strings.xml` for 🇰🇿 translation), with the content of our [strings.xml](myid_strings.xml) file, translated for that locale.
Javohir Savriy's avatar
Javohir Savriy committed
233
234
235
236
237
238

## Custom Organization Details

You can customize the SDK, for it to match your organization's brand book, by providing `OrganizationDetails` object to `withOrganizationDetails` method.
The object allows you to customize following fields:
- *phoneNumber* - by default 712022202, which is MyID's call center. If you would like the customer to call your own call center, you can display your own phone number on the error screen, by providing it in this field ([sample](images/screen01.jpg)).
Javohir Savriy's avatar
2.1.0    
Javohir Savriy committed
239
- *logo* - the drawable asset, that will be displayed on the input screen. If you would like to display your own logo on the top of the screen, this is the place to provide it. Make sure it fits the imageView element, which has the *240x60* size.