Files
pico-streaming/settings.gradle.kts
ThibaultBee 5740e3f22b
Some checks failed
Build / build (push) Has been cancelled
chore(*): modernize the project
2026-02-04 15:16:56 +01:00

24 lines
538 B
Kotlin

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")