FlowingLightBoard/settings.gradle.kts
2026-01-05 16:28:06 +08:00

21 lines
375 B
Plaintext

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}
rootProject.name = "FlowingLightBoard"
include(":app")