LSPlant/settings.gradle.kts
2022-10-29 12:58:39 +08:00

25 lines
474 B
Plaintext

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