mirror of
https://github.com/PhilKes/NotallyX.git
synced 2025-06-28 04:09:54 +00:00
26 lines
602 B
Kotlin
26 lines
602 B
Kotlin
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")
|