aha. ``` gradle.taskgraph.whenReady { taskGraph -&...
# android
d
aha.
Copy code
gradle.taskgraph.whenReady { taskGraph ->
  if (taskGraph.hasTask(':app:assembleRelease')) {
    assembleRelease << { doOtherStuff() }
  }
}
that's pretty annoying though. 😞