This message was deleted.
# kotlin-native
s
This message was deleted.
d
What's
preBuild
supposed to be?
s
does preBuild only exist in Android Studio?
d
It only exists in android gradle projects.
s
eg App/build.gradle : preBuild.dependsOn t
oh
how do i get
t
to run before
src
gets built
d
If you look in the gradle window on the right, you'll see the name of the task you're looking for.
s
ok
d
Ah found it! Do
sourceSets.all { compileKotlinTask.dependsOn(t) }
.