2024-10-15 13:47:40 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2025-01-18 07:04:23 +00:00
|
|
|
google()
|
2024-10-15 13:47:40 +00:00
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "NoteVault"
|
|
|
|
include(":app")
|
|
|
|
|