I am trying to write a gradle task for my Android application that launches the Google appengine developer server, runs a test, and then closes the server.
What I tried looks like this:
task runAppEngine (dependsOn: ":backend:appengineRun") <<{
The appengineRun task is executed, but everything that I insert in the doLast section of the gradle task never starts. For example, if I set the println statement, it never prints to the console.
I'm also not sure how to handle the appengineStop call from a task to stop the development server.
Thanks for any help anyone can offer!
android google-app-engine build.gradle gradle
Alex holliday
source share