Files
WITL/MyApp_1/settings.gradle.kts
2023-10-28 20:58:33 +02:00

18 lines
326 B
Plaintext

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "MyApp_1"
include(":app")