Files
bookshelf/app/build.gradle.kts
claude 6c17e42037 Baseline: wave 1A server complete, wave 1B Android scaffold + design system green
assembleDebug, testDebugUnitTest, and recordPaparazziDebug all pass.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016bThmkmyUUdqQpy3MXFFe5
2026-09-06 01:58:37 +00:00

21 lines
877 B
Kotlin

// Top-level build file where you can add configuration options common to all sub-projects/modules.
//
// AGP 9 has Kotlin support BUILT IN (the org.jetbrains.kotlin.android plugin no
// longer exists / must not be applied). AGP's built-in Kotlin defaults to bundling
// its own Kotlin Gradle Plugin version; bump it here to the version we actually
// want (must match the Compose/serialization plugin versions below).
buildscript {
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.21")
classpath("com.google.devtools.ksp:symbol-processing-gradle-plugin:2.3.11")
}
}
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.paparazzi) apply false
}