Added randomly unversioned files that I thought should be included....

This commit is contained in:
2026-01-22 17:11:00 +11:00
parent 8f178d16e9
commit 12c0508713
8 changed files with 359 additions and 0 deletions

25
settings.gradle.kts Normal file
View File

@@ -0,0 +1,25 @@
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()
// Add this line:
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "Speech To Keyboard"
include(":app")