Ignore Gradle Build Failure And Continue Build Script?
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 there are m
Solution 1:
Solution 2:
add this in the build.gradle file :
tasks.withType(JavaCompile) {
options.failOnError(false)
}
Post a Comment for "Ignore Gradle Build Failure And Continue Build Script?"