문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top