mirror of
https://github.com/PhilKes/NotallyX.git
synced 2025-06-28 12:19:55 +00:00
27 lines
602 B
Text
27 lines
602 B
Text
|
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()
|
||
|
maven {
|
||
|
url = uri("https://jitpack.io")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
rootProject.name = "NotallyX"
|
||
|
include(":app")
|