new: introduce build-logic module to centralize Gradle configuration

This commit is contained in:
2026-07-02 18:29:07 +02:00
parent 87ae329230
commit ddab9b642d
14 changed files with 104 additions and 273 deletions
+13
View File
@@ -0,0 +1,13 @@
plugins {
`kotlin-dsl`
}
dependencies {
implementation(libs.android.gradlePlugin)
implementation(libs.kotlin.gradlePlugin)
implementation(libs.compose.gradlePlugin)
implementation(libs.composeCompiler.gradlePlugin)
// Makes the typed `libs` catalog accessors usable inside precompiled script plugins
// (workaround for https://github.com/gradle/gradle/issues/15383)
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
}