android studio编译警告:请使用 -Xlint:deprecation 重新编译

  • android studio编译警告:请使用 -Xlint:deprecation 重新编译
  • 虽然不会对项目有什么影响,但是对于强迫症的人来说,还是很难受的;

    既然提示我们使用–Xlint:deprecation重新编译,那我们只需要在build.gradle(Project:xxxxxxx)下找到allprojects标签,加入:
    gradle.projectsEvaluated {
    tasks.withType(JavaCompile) {
    options.compilerArgs << "-Xlint:unchecked" << "- Xlint:deprecation"
    }
    }

    so,我的allprojects标签:
    allprojects {
    repositories {
    jcenter()
    }
    gradle.projectsEvaluated {
    tasks.withType(JavaCompile) {
    options.compilerArgs << “-Xlint:unchecked” << “-Xlint:deprecation”
    }
    }

}

点赞