-Xlint:deprecation

Error:注: ...\xx\xxx.java使用或覆盖了已过时的 API。

注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。

-------------------------------------------------------------------------------------

allprojects {

gradle.projectsEvaluated {

tasks.withType(JavaCompile) {

options.compilerArgs <<"-Xlint:unchecked"<<"-Xlint:deprecation"

}

}

}

你可能感兴趣的:(-Xlint:deprecation)