You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.:
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
?The text was updated successfully, but these errors were encountered: