io.github.arya458.dead-code-detector
                  Owner:
                  
                    
                    Aria Danesh
                  
                
Detects unused classes, methods, fields, and (Android, Ktor,Spring,...) resources in your project.
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 (Android, Ktor,Spring,...) resources in your project.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.github.arya458.dead-code-detector") 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:io.github.arya458.dead-code-detector.gradle.plugin:0.0.7") }It can then be applied in the precompiled script plugin:plugins { id("io.github.arya458.dead-code-detector") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.arya458.dead-code-detector:io.github.arya458.dead-code-detector.gradle.plugin:0.0.7") } } apply(plugin = "io.github.arya458.dead-code-detector") - Applying plugins to all subprojects .