# Installation

To include the GIZO SDK to an Android project, add the JitPack repository to the **build.gradle** file:

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

```json
pluginManagement {
    repositories {
        maven {
            url = uri("https://jitpack.io")
        }
    }
}
```

{% endtab %}

{% tab title="Groovy" %}

```
pluginManagement {
    repositories {
        maven {
            url 'https://jitpack.io'
        }
    }
}
```

{% endtab %}
{% endtabs %}

Additionally, include the following line in the dependencies section.

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

<pre><code><strong>implementation("com.github.artificient-ai:gizo-android-sdk-alpha:2.0.9")
</strong></code></pre>

{% endtab %}

{% tab title="Groovy" %}

```
implementation 'com.github.artificient-ai:gizo-android-sdk-alpha:2.0.9'
```

{% endtab %}
{% endtabs %}

Once the JitPack repository and the GIZO SDK are added to the **build.gradle** file, you can proceed to the next section.


---

# 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://docs.artificient.de/usage/android/installation.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.
