2025-04-26 02:39:56 +03:00
|
|
|
// Copyright (c) 2025 Gleb Zaharov. License: GPLv3 (see LICENSE).
|
|
|
|
|
2024-03-19 00:27:57 +03:00
|
|
|
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 = "UNN"
|
|
|
|
include(":app")
|