LSPlant/settings.gradle.kts

26 lines
534 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.1.1"
id("com.android.library") version "7.1.1"
id("org.jetbrains.kotlin.android") version "1.6.10"
}
}
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
)