Search Gradle plugins

Gradle plugin for managing Ketoy SDUI screens — push, pull, rollback, list, and delete cloud-hosted server-driven UI layouts from the command line.

https://ketoy.dev

Sources: https://github.com/KetoyDev/ketoy

Version 0.1.5-beta.9

Created 20 March 2026.

Gradle plugin for the Ketoy SDUI SDK. 11 built-in tasks: cloud push, pull, rollback, list, delete; DSL-to-JSON export (dev + prod with manifests); and an HTTP + WebSocket dev server with file & source watchers for live hot-reload preview of Jetpack Compose screens.

Gradle features compatibility:
Configuration cache ×

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.ketoy.devtools") version "0.1.5-beta.9"
}

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.5-beta.9")
    }
    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.5-beta.9")
      }
    }
    
    apply(plugin = "dev.ketoy.devtools")
  • Applying plugins to all subprojects .