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