headache/settings.gradle.kts
Thomas Andres Gomez 4944f06e91 Remove TOML catagog file & clean warning.
Expect that fucking rootProject.exec in gradle.
2025-10-08 22:55:55 +02:00

30 lines
771 B
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
maven {
url = uri("https://androidx.dev/snapshots/builds/13617490/artifacts/repository")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = uri("https://androidx.dev/snapshots/builds/13617490/artifacts/repository")
}
}
}
rootProject.name = "Headache"
include(":app")