Ho provato ad aggiungere quanto segue al build.gradle
file root :
subprojects {
gradle.projectsEvaluated {
tasks.withType(Compile) {
options.compilerArgs << "-Xlint:unchecked -Xlint:deprecation"
}
}
}
Ma sto ottenendo questo:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':Libraries:ActionBarSherlock:compileRelease'.
> invalid flag: -Xlint:unchecked -Xlint:deprecation
Che cosa sto facendo di sbagliato?
"-Xlint:unchecked" << "-Xlint:deprecation"
e ha funzionato per entrambi :) Se vuoi creare una risposta con questo, lo segnerò volentieri come accettato.