# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api2-ekycapis.innov8tif.com/okaydoc-mobile-sdk/okaydoc-mobile-sdk-all/installation-guide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
