This message was deleted.
# general
s
This message was deleted.
d
You will have to grab the task after the binaries are finalized. I think you could get away with deferring the task query using a closure. Something like
dependsOn { tasks.getByName(...) }
You could also use
dependsOn "linkRelease"
Both are ways to defer the task dependency.
i
Indeed both work ! Thanks for your help
👍 1