Owner:
Ketoy Dev
Provides the Ketoy compiler module for Android. Compiles @KetoyComposable / @KetoyViewModel Kotlin (Jetpack Compose) source into signed KBC (.ktx) bundles for the Ketoy server-driven UI runtime, and wires the ketoyBundle and ketoyExportCapabilities tasks. Open source: https://github.com/KetoyDev/ketoy
Sources: https://github.com/KetoyDev/ketoy
Version 0.4.2-alpha (latest)
Created 18 June 2026.
Provides the Ketoy compiler module for Android. Compiles @KetoyComposable / @KetoyViewModel Kotlin (Jetpack Compose) source into signed KBC (.ktx) bundles for the Ketoy server-driven UI runtime, and wires the ketoyBundle and ketoyExportCapabilities tasks. Open source: https://github.com/KetoyDev/ketoy
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.ketoy.compiler") version "0.4.2-alpha"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("dev.ketoy.compiler:dev.ketoy.compiler.gradle.plugin:0.4.2-alpha") }It can then be applied in the precompiled script plugin:plugins { id("dev.ketoy.compiler") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.ketoy.compiler:dev.ketoy.compiler.gradle.plugin:0.4.2-alpha") } } apply(plugin = "dev.ketoy.compiler") - Applying plugins to all subprojects .