tabs-lite/settings.gradle.kts

30 lines
745 B
Text
Raw Normal View History

2025-11-24 08:58:44 +01:00
pluginManagement {
repositories {
google{
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
maven(url = "https://repo.repsy.io/mvn/chrynan/public")
maven(url = "https://jitpack.io")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://repo.repsy.io/mvn/chrynan/public")
maven(url = "https://jitpack.io")
}
}
rootProject.name = "TabsLite"
include(":app")