在allprojects中添加gradle.projectsEvaluated 闭包,重新build 会在run窗口中看到具体哪行的代码用了过时的方法
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
...
}
网友评论