// Root build script. Registers the Kotlin plugins (versions from the catalog) but // applies none at the root — each module opts in via its own `plugins { }` block. // Kept intentionally thin (KISS); there is no allprojects/subprojects magic. plugins { alias(libs.plugins.kotlin.jvm) apply false alias(libs.plugins.kotlin.serialization) apply false // AGP 9.2.1 — proven to build against Android SDK 35 with Gradle 9.6.1. // AGP 9 has built-in Kotlin; framework modules apply only these (no kotlin.android). alias(libs.plugins.android.library) apply false alias(libs.plugins.android.application) apply false }