21 lines
500 B
Kotlin
21 lines
500 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google() // Quitamos el filtro 'content' para dar acceso total a las herramientas de Google
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Kilometrapp"
|
|
include(":app")
|