# Installation

{% hint style="info" %}
On Android Studio you can add MBurger dependency using gradle via **Maven**.
{% endhint %}

First add this line to your project **`build.gradle`** file under **`allprojects{repositories{`**

```java
maven { url "https://dl.bintray.com/mumbleideas/MBurger-Android/" }
```

Then you just need to add the dependency for MBurger on your app build.gradle file:

This one if you want to use the Kotlin version of the SDK **(recommended)**:

```java
implementation 'mumble.mburger:android_kt:0.5.11'
```

If you want you can also download or clone the repo, you will find a `MBurger` directory, which contains the client SDK to use MBurger.

You can also import **`MBurger`** library inside your Android Studio project and include it adding to your **`settings.gradle`** file, then import into your app adding to your app module **`build.gradle`** file

```java
implementation project(':mburger_kt')
```

{% hint style="warning" %}
Be aware that MBurger SDK implements:
{% endhint %}

```java
//In order to support some components on older Android versions
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

//For installing https certificates on older Android versions
implementation 'com.google.android.gms:play-services-base:17.3.0'

//For Admin API support
implementation 'com.squareup.okhttp3:okhttp:3.14.0'
```

{% hint style="warning" %}
Also this SDK requires **AndroidX** support as well as **minimum SDK 4.2** (API 17).
{% 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://docs.mburger.cloud/android-docs/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.
