12 lines
733 B
Kotlin
12 lines
733 B
Kotlin
// Root build file. AGP 9.2.0 has BUILT-IN Kotlin support — modules do NOT apply
|
|
// org.jetbrains.kotlin.android (it's an error under AGP 9). The Compose compiler plugin is declared
|
|
// here (version + apply false) so modules can apply it version-less; its version pins the build's
|
|
// Kotlin (compose-compiler and Kotlin release in lockstep), keeping them matched.
|
|
// Toolchain: AGP 9.2.0 · Gradle 9.4.1 · Kotlin/Compose-compiler 2.3.21 · JDK 21 · Compose BOM
|
|
// 2026.05.01 · compileSdk 37 · targetSdk 36 · minSdk 31.
|
|
plugins {
|
|
id("com.android.application") version "9.2.1" apply false
|
|
id("com.android.library") version "9.2.1" apply false
|
|
id("org.jetbrains.kotlin.plugin.compose") version "2.3.21" apply false
|
|
}
|