chore(*): modernize the project
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
ThibaultBee
2026-02-04 15:13:10 +01:00
parent 529356a052
commit 5740e3f22b
15 changed files with 124 additions and 89 deletions

23
settings.gradle.kts Normal file
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 = "MyStreamingApp"
include(":app")