Traté de agregar lo siguiente al build.gradle
archivo raíz :
subprojects {
gradle.projectsEvaluated {
tasks.withType(Compile) {
options.compilerArgs << "-Xlint:unchecked -Xlint:deprecation"
}
}
}
Pero estoy entendiendo esto:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':Libraries:ActionBarSherlock:compileRelease'.
> invalid flag: -Xlint:unchecked -Xlint:deprecation
¿Qué estoy haciendo mal?
"-Xlint:unchecked" << "-Xlint:deprecation"
y funcionó para ambos :) Si desea crear una respuesta con esto, con mucho gusto lo marcaré como aceptado.