Owner:
Ketoy Dev
Gradle plugin for managing Ketoy SDUI screens — push, pull, rollback, list, and delete cloud-hosted server-driven UI layouts from the command line.
Sources: https://github.com/KetoyDev/ketoy
Version 0.1-beta (latest)
Created 05 March 2026.
Gradle plugin for managing Ketoy SDUI screens — push, pull, rollback, list, and delete cloud-hosted server-driven UI layouts from the command line.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.ketoy.devtools") version "0.1-beta"
}
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.devtools:dev.ketoy.devtools.gradle.plugin:0.1-beta") }It can then be applied in the precompiled script plugin:plugins { id("dev.ketoy.devtools") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.ketoy.devtools:dev.ketoy.devtools.gradle.plugin:0.1-beta") } } apply(plugin = "dev.ketoy.devtools") - Applying plugins to all subprojects .