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 {
2023-02-06 11:12:32 +08:00
id("com.android.application") version "7.4.1"
id("com.android.library") version "7.4.1"
2022-11-26 22:45:45 +08:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LSPlt"
include(
":lsplt",
":test",
)