How do I get access to the task createDistributabl...
# compose-desktop
n
How do I get access to the task createDistributable of Compose to add a dependency task? I tried
Copy code
tasks.named("createDistributable")
in gradle build file but it's not found?
solved by adding project.evaluate{...} and calling tasks.named in the lambda.