After having several issues installing the plugin, a Stack Overflow answer helped me at least try the plugin locally.
So I run ./gradlew debloat only to see this:
> C:\my\path\to\project\build\classes does not exist
So I investigate where my classes are, and then I realize that as this is an Android project, a multi-module project, and we're using multiple productFlavors the classes are at e.g.:
C:\my\path\to\project\my-module-name\build\intermediates\javac\my-product-flavor-Debug\classes\my\package\name\MyClass.class
Can you add support for more options for where the class files are and not assume that everything is in \build\classes?