Installation

On Android Studio you can add MBurger dependency using gradle via Maven.

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

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):

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

implementation project(':mburger_kt')

Be aware that MBurger SDK implements:

//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'

Also this SDK requires AndroidX support as well as minimum SDK 4.2 (API 17).

Last updated