Question

I tried to build Redphone for my android device using gradle. I always get the following error

FAILURE: Build failed with an exception
* What went wrong:
Execution failed for task ':lint'.
> Lint found errors with abortOnError=true; aborting build.

What exactly is the error and how to correct.
Please Help.

Was it helpful?

Solution

The build can be completed by adding the following to build.gradle

android {
    lintOptions {
        abortOnError false
    }
}

Tried the solution by Scott Barta and Jared Burrows at How to fix error running ./gradlew check connectedCheck, after update AndroidStudio to 0.4.0? and it worked.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top