LSPlant/settings.gradle.kts
2023-06-08 12:02:41 +08:00

25 lines
474 B
Plaintext

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id("com.android.application") version "8.0.1"
id("com.android.library") version "8.0.1"
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LSPlant"
include(
":lsplant",
":test",
)