2024-12-22 14:33:51 +00: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()
|
2025-01-01 17:56:52 +00:00
|
|
|
maven { url = uri("https://jitpack.io") }
|
2024-12-22 14:33:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "NeatCalendar"
|
|
|
|
include(":app")
|
|
|
|
|