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) }