LSPlant/settings.gradle.kts
2022-09-14 00:42:07 +08:00

25 lines
474 B
Plaintext

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