TBH maybe this is not related to Gradle but not su...
# gradle
j
TBH maybe this is not related to Gradle but not sure where I should post this one. I have a custom theme in an isolated module for compose based on the library material, thanks to Gradle I can just use
implementation
instead of
api
to avoid exposing Material, but it is becoming inviable the amount of dupe code of things are not going to change in the foreseeable future (animations for example). So I moved my components to be a mix of my custom theme params plus material params. Problem is I don't want expose some composables/imports from Material lib, so they can't be imported and not only fix the issue of IDE suggesting them, even just failing in compile time too. Is it possible to be done with Gradle easily?
y
You can write a lint check