You can find the instructions for this lab here. Create a new repository on GitHub to house your code. Be sure to make the repository public so that I can view and grade it.
We will use Gradle to automate common development tasks.
You can build the app using:
./gradlew build
You can run the automated suite of tests using:
./gradlew test
You can run the app using:
./gradlew run --quiet --console=plain
The two flags passed to the run
command hide the noisy output from Gradle. You can see the details from Gradle by omitting those flags.