Android demo for speaker diarization (#1423)

This commit is contained in:
Fangjun Kuang
2024-10-13 14:02:57 +08:00
committed by GitHub
parent 94b26ff07c
commit 5a22f74b2b
64 changed files with 1905 additions and 26 deletions

View File

@@ -0,0 +1,23 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "SherpaOnnxSpeakerDiarization"
include(":app")