# Installation

This page will help you with setting up the Mobile SDK in your Android application.

# Gradle Setup

Smartsupp for Android supports API 23 and above.

Add the following dependency to your app's build.gradle file:

dependencies {
    implementation("com.smartsupp.android:android-sdk:1.2.8")
}

# Maven Central

Add the following to your root build.gradle file

allprojects {
    repositories {
      mavenCentral()
    }
}

WARNING

If your app uses websocket or STOMP connections based on OkHttp (for example via Krossbow), be aware that the SmartSupp Android SDK also includes its own OkHttp client internally through io.socket:socket.io-client.