Owner:
Muhammad Sarim Mehdi
Generates a clean-architecture Android project skeleton and TOML-driven feature code: domain, data, presentation, DI, and screenshot modules, plus contract-first test scaffolding.
https://github.com/sarimmehdi/clean-android-skeleton-gradle-plugin
Sources: https://github.com/sarimmehdi/clean-android-skeleton-gradle-plugin.git
Version 0.1.1 (latest)
Created 07 August 2026.
Generates a clean-architecture Android project skeleton and TOML-driven feature code: domain, data, presentation, DI, and screenshot modules, plus contract-first test scaffolding.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.sarimmehdi.clean-android-skeleton") version "0.1.1"
}
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("io.github.sarimmehdi.clean-android-skeleton:io.github.sarimmehdi.clean-android-skeleton.gradle.plugin:0.1.1") }It can then be applied in the precompiled script plugin:plugins { id("io.github.sarimmehdi.clean-android-skeleton") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.sarimmehdi.clean-android-skeleton:io.github.sarimmehdi.clean-android-skeleton.gradle.plugin:0.1.1") } } apply(plugin = "io.github.sarimmehdi.clean-android-skeleton") - Applying plugins to all subprojects .