-Xlint:deprecation
2017-07-26 本文已影响0人
shaort
Error:注: ...\xx\xxx.java使用或覆盖了已过时的 API。
注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
-------------------------------------------------------------------------------------
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs <<"-Xlint:unchecked"<<"-Xlint:deprecation"
}
}
}