Skip to content

Android SDK

With the SORI Android SDK, you can easily and quickly add audio recognition capabilities to your existing Android application.

Prerequisites

  • Android API level 24 or later
  • Kotlin stdlib 2.0 or higher

SORI Android SDK is compatible with Android 7.0 (API level 24) and later, but we recommend using modern android API for better performance and stability. Since the SDK is written in Kotlin, you need to add the Kotlin standard library to your project.

TIP

It is OK to use Java, if you add the Kotlin stdlib in your gradle plugins section.

Please ensure that you have the following dependencies in your build.gradle file:

groovy
dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.0"
}
kotlin
plugins {
    kotlin("android") version "2.1.20"
}

Installation

References to the Sample App

We provide a sample code that demonstrates how to integrate the SDK into your Android app.

SORI Example Android Kotlin