I am working with an ndk project using gradle-experimental. I have a "prebuilt" library that is really a library I generate with a shell call in a gradle task. I am trying to make it very easy for this project to run out of the box, so I need to be able to run this buildTask before gradle builds. I have looked into preBuild.dependsOn ...
, but unfortunately, that is not supported in experimental. Any ideas? I currently have a .sh
file that runs it, but I'm trying to get away from it.
Edit: Not duplicate because gradle-experimental doesn't support preBuild as I already stated.