Install Sahha SDK for Android
Learn how to integrate the Sahha SDK into your Android project.
Step 1) Add Repository
Add the repository to your project's Settings.gradle.
gradle
repositories { mavenCentral()} repositories {
mavenCentral()
}
Step 2) Add Implementation
Add the Sahha SDK implementation to your project's dependencies in Build.gradle.
View Sahha Android SDK on GitHub
gradle
dependencies {
...
implementation 'ai.sahha:sahha-android:+'
...
} dependencies {
...
implementation 'ai.sahha:sahha-android:+'
...
}
Step 3) Import Module
Import the Sahha module into any files inside your project that use the SDK.
kotlin
import sdk.sahha.android.source.* import sdk.sahha.android.source.*
Next Steps
Continue to Step 3.) Configure Settings to configure the Sahha SDK.