Skip to content Skip to sidebar Skip to footer

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:

The flag to use is --continue.

From the documentation:

Continues task execution after a task failure.

Solution 2:

Post a Comment for "Ignore Gradle Build Failure And Continue Build Script?"