mobile_first/settings.gradle.kts

18 lines
334 B
Plaintext
Raw Permalink Normal View History

2024-10-11 13:48:22 +00:00
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "My Application"
include(":app")