12 lines
677 B
Kotlin
12 lines
677 B
Kotlin
// Top-level build file. Plugin versions are declared here and applied per-module.
|
|
plugins {
|
|
id("com.android.application") version "8.13.2" apply false
|
|
id("com.android.test") version "8.13.2" apply false
|
|
id("org.jetbrains.kotlin.android") version "2.0.21" apply false
|
|
id("org.jetbrains.kotlin.plugin.compose") version "2.0.21" apply false
|
|
id("org.jetbrains.kotlin.plugin.serialization") version "2.0.21" apply false
|
|
// Generates app/src/release/generated/baselineProfiles from the :benchmark journeys.
|
|
// Keep this version in step with the androidx.benchmark artifacts in benchmark/.
|
|
id("androidx.baselineprofile") version "1.3.4" apply false
|
|
}
|