Skip to main content

Android

Learn how to install the Sahha SDK in your Android project


Step 1) Add Jitpack

Add the Jitpack repository to your project's Settings.gradle.

Settings.gradle
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}

Step 2) Add Implementation

Add the Sahha SDK implementation to your project's dependencies in Build.gradle.

Build.gradle
dependencies {

...

implementation 'com.github.sahha-ai:sahha-android:+'

...

}

Step 3) Import Module

Import the Sahha module into any files inside your project that use the SDK.

MyApp.kt
import sdk.sahha.android.source.*