Files
pico-streaming/settings.gradle.kts

24 lines
538 B
Kotlin
Raw Normal View History

2022-11-11 18:58:47 +01:00
pluginManagement {
repositories {
2026-02-04 15:13:10 +01:00
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
2022-11-11 18:58:47 +01:00
mavenCentral()
2026-02-04 15:13:10 +01:00
gradlePluginPortal()
2022-11-11 18:58:47 +01:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
2026-02-04 15:13:10 +01:00
2022-11-11 18:58:47 +01:00
rootProject.name = "MyStreamingApp"
2026-02-04 15:13:10 +01:00
include(":app")