Skip to content
This repository was archived by the owner on Jan 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ To use WhisperKit in your Android app, you need to:
```kotlin
dependencies {
// 1. WhisperKit SDK
implementation("com.argmaxinc:whisperkit:0.3.2") // Check badge above for latest version
implementation("com.argmaxinc:whisperkit:0.3.3") // Check badge above for latest version

// 2. QNN dependencies for hardware acceleration
implementation("com.qualcomm.qnn:qnn-runtime:2.34.0")
Expand Down
4 changes: 2 additions & 2 deletions android/examples/WhisperAX/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "com.argmaxinc.whisperax"
minSdk = 26
targetSdk = 35
versionCode = 6
versionName = "0.1.0"
versionCode = 7
versionName = "0.3.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion android/whisperkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {

mavenPublishing {

coordinates("com.argmaxinc", "whisperkit", "0.3.2")
coordinates("com.argmaxinc", "whisperkit", "0.3.3")
pom {
name.set("WhisperKit")
description.set("On-device Speech Recognition for Android")
Expand Down