Managing Android\'s dependencies with Gradle is done in a weird way. They have to be downloaded differently into a local repo. This is a pain when setting up CI build as the
add this in the build.gradle file :
tasks.withType(JavaCompile) { options.failOnError(false) }
The flag to use is --continue.
--continue
From the documentation:
Continues task execution after a task failure.