Android-Password-Store/build-logic/settings.gradle.kts

26 lines
435 B
Text
Raw Normal View History

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
}
rootProject.name = "build-logic"
enableFeaturePreview("VERSION_CATALOGS")
include("android-plugins")
include("automation-plugins")
include("kotlin-plugins")