NoteVault/settings.gradle.kts

26 lines
589 B
Plaintext
Raw Permalink Normal View History

2024-10-15 13:47:40 +00:00
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
2024-10-31 20:05:40 +00:00
2024-10-15 13:47:40 +00:00
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
2024-10-31 20:05:40 +00:00
maven { url = uri("https://www.jitpack.io") }
2024-10-15 13:47:40 +00:00
}
}
rootProject.name = "NoteVault"
include(":app")