Commit a50fe665 authored by Javohir Savriy's avatar Javohir Savriy
Browse files

Update README.md

parent 0055de5d
......@@ -37,18 +37,34 @@ compileOptions {
### 1.2 Setup MyID Android SDK
Add reference to library to module **_build.gradle_**:
#### Step 1: Add the Repository
First, add the Artifactory repository to the repositories block of your module's **_build.gradle_** file:
```gradle
repositories {
maven { url "https://artifactory.aigroup.uz:443/artifactory/myid" }
}
```
#### Step 2: Add the Dependency
Next, add the SDK dependency to the dependencies block:
```gradle
dependencies {
implementation("uz.myid.sdk.capture:myid-capture-sdk:2.3.2")
}
```
If you are using Huawei devices, Flutter or an environment that does not support Google Play Services, use the bundled version of the SDK:
```gradle
dependencies {
implementation("uz.myid.sdk.capture:myid-capture-sdk-bundled:2.3.2")
}
```
After synchronization, You should be able to access to SDK classes from your source code.
### 1.3 Permissions
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment