Is it possible to disable Compose Resources Gradle plugin/tasks such as all related to resources tasks will not be created?
I'm not using this functions but when building project got log with a lot of resources tasks with NO-SOURCE or SKIPPED.
It would be nice if i can make these tasks not registered at all.
v
Vampire
11/25/2024, 7:47 PM
Unlikely, but you have to ask the plugin maintainer that is registering those tasks whether there is some possibility to make it not register the tasks.
After they were registered, you should not try to remove them somehow.
But usually no-source and skipped tasks should also not produce too much overhead.
z
zt
11/25/2024, 8:05 PM
There is an option to disable resources generation.
Copy code
compose.resources.generateResClasses
I'm not sure if this stops the tasks from registering though
v
Vampire
11/25/2024, 8:10 PM
If it is a property in their extension, then only if they follow bad practices. 😄
If it is a project property maybe.