We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Three ways to add whisper-android. Pick one.
whisper-android
// build.gradle.kts (module) dependencies { implementation("dev.ffmpegkit-maintained:whisper-android:0.1.1") }
Nothing else to configure — mavenCentral() is in the default repositories of any new Android project.
mavenCentral()
Add the JitPack repository once:
// settings.gradle.kts dependencyResolutionManagement { repositories { google() mavenCentral() maven { url = uri("https://jitpack.io") } } }
Then depend on a tag:
dependencies { implementation("com.github.ffmpegkit-maintained:whisper:v0.1.1") }
whisper-android-<version>.aar
app/libs/
dependencies { implementation(files("libs/whisper-android-0.1.1.aar")) implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0") }
You do not need the NDK, CMake, or the whisper.cpp sources — the native code is already compiled inside the AAR.