LSPlant/settings.gradle.kts

25 lines
474 B
Plaintext
Raw Normal View History

2022-02-20 23:53:06 +08:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id("com.android.application") version "7.3.0"
id("com.android.library") version "7.3.0"
2022-02-20 23:53:06 +08:00
}
}
2022-02-16 07:24:35 +08:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LSPlant"
include(
2022-02-20 23:53:06 +08:00
":lsplant",
":test",
2022-02-16 07:24:35 +08:00
)