루트 build.gradle
파일에 다음을 추가하려고했습니다 .
subprojects {
gradle.projectsEvaluated {
tasks.withType(Compile) {
options.compilerArgs << "-Xlint:unchecked -Xlint:deprecation"
}
}
}
그러나 나는 이것을 얻고있다 :
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':Libraries:ActionBarSherlock:compileRelease'.
> invalid flag: -Xlint:unchecked -Xlint:deprecation
내가 뭘 잘못하고 있죠?
"-Xlint:unchecked" << "-Xlint:deprecation"
두 가지 모두에 효과가있었습니다.