mirror of
https://github.com/jahruz67/Ambient-Launcher.git
synced 2026-08-08 18:14:05 +00:00
- Integrate sherpa-onnx for local "Computer" wake-word detection - Add foreground service (microphone type) for continued listening across apps - Request RECORD_AUDIO, POST_NOTIFICATIONS, and foreground service permissions - Download and verify pinned sherpa-onnx model (17 MB) on first enable - Update LauncherViewModel with wake-word state and controller - Add WorkManager and commons-compress dependencies for model extraction - Update README with wake-word feature details and limitations
27 lines
633 B
Kotlin
27 lines
633 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
ivy {
|
|
name = "sherpaOnnxReleases"
|
|
url = uri("https://github.com/k2-fsa/sherpa-onnx/releases/download")
|
|
patternLayout {
|
|
artifact("v[revision]/[artifact]-[revision].[ext]")
|
|
}
|
|
metadataSources { artifact() }
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "AmbientLauncher"
|
|
include(":app")
|