Can I have a "preview time" dependency in gradle? ...
# compose
u
Can I have a "preview time" dependency in gradle? Or is
debugImplementation
the best I can do?
s
compileOnly
? But how will you remove the dependency from the final artifact?
debugImplementation
gives you a source set so you can avoid packaging things that are debug only. Not sure how you'd achieve that with
compileOnly