Owner:
KODE Dev
Android plugin to configure output and changelog generation
Version 2.0.1
Created 19 August 2026.
Gradle plugin that centralizes static analysis and formatting: configures detekt per module, runs ktlint through CLI and provides aggregate verification tasks (pipelineCheck, prePushCheck)
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.kode.android.app-quality.foundation") version "2.0.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("ru.kode.android.app-quality.foundation:ru.kode.android.app-quality.foundation.gradle.plugin:2.0.1") }It can then be applied in the precompiled script plugin:plugins { id("ru.kode.android.app-quality.foundation") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.kode.android.app-quality.foundation:ru.kode.android.app-quality.foundation.gradle.plugin:2.0.1") } } apply(plugin = "ru.kode.android.app-quality.foundation") - Applying plugins to all subprojects .