a24679ce69
android / android (push) Failing after 50s
apple / swift (push) Successful in 54s
deb / build-publish (push) Successful in 2m25s
ci / web (push) Successful in 28s
ci / rust (push) Successful in 1m36s
ci / docs-site (push) Successful in 28s
decky / build-publish (push) Successful in 11s
docker / build-push (--build-arg FEDORA_VERSION=44, ci, ci/fedora-rpm.Dockerfile, punktfunk-fedora44-rpm) (push) Successful in 4s
docker / build-push (., web/Dockerfile, punktfunk-web) (push) Successful in 5s
docker / build-push (ci, ci/fedora-rpm.Dockerfile, punktfunk-fedora-rpm) (push) Successful in 5s
docker / build-push (ci, ci/rust-ci.Dockerfile, punktfunk-rust-ci) (push) Successful in 5s
docker / build-push (docs-site, docs-site/Dockerfile, punktfunk-docs) (push) Successful in 4s
ci / bench (push) Successful in 4m25s
rpm / build-publish (bazzite, punktfunk-fedora-rpm) (push) Successful in 8m4s
docker / deploy-docs (push) Successful in 17s
rpm / build-publish (fedora-44, punktfunk-fedora44-rpm) (push) Successful in 7m55s
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
|
|
}
|