LSPlt/settings.gradle.kts

25 lines
470 B
Plaintext
Raw Normal View History

2022-11-26 22:45:45 +08:00
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 = "LSPlt"
include(
":lsplt",
":test",
)