Exercise-5-7-Android-Interview/settings.gradle.kts

19 lines
365 B
Plaintext
Raw Normal View History

2023-03-20 15:58:43 +03:00
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LabSICampus"
include(":app")