# Installation Guide

{% tabs %}
{% tab title="Android" %}

### Android Installation Guide

The first step of the installation for OkayDoc in Android is to include the following dependencies in the project-level build.gradle file. OkayDoc supports **minimum android SDK 24** and above. The build.gradle file will need to make some changes as follow below:

```
allprojects {
    repositories {
        ...
        mavenCentral()
    }
}
```

Include the following dependencies in the app-level build.gradle file as shown below:

```
android {
    ...
    aaptOptions {
        noCompress "tflite"
    }
}

dependencies{
    implementation 'com.innov8tif.okaydoc:OkayDoc:1.0.3'
}
```

After adding the code, sync the project with gradle files. So that it is to make sure all of the dependencies are successfully installed.
{% endtab %}
{% endtabs %}

{% hint style="info" %}
Please be aware of the codes and commands above are **case sensitive.**
{% endhint %}
