io.github.arya458.dead-code-detector-android
Owner:
Aria Danesh
Detects unused classes, methods, fields, and resources in your project (For Android).
https://github.com/arya458/Dead-Code-Detector-Gradle-Plugin
Sources: https://github.com/arya458/Dead-Code-Detector-Gradle-Plugin
Version 0.0.7 (latest)
Created 28 September 2025.
Detects unused classes, methods, fields, and resources in your project (For Android).
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.arya458.dead-code-detector-android") version "0.0.7"
}
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.arya458.dead-code-detector-android:io.github.arya458.dead-code-detector-android.gradle.plugin:0.0.7") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.arya458.dead-code-detector-android") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.arya458.dead-code-detector-android:io.github.arya458.dead-code-detector-android.gradle.plugin:0.0.7") } } apply(plugin = "io.github.arya458.dead-code-detector-android")
- Applying plugins to all subprojects .