項(xiàng)目級build.gradle中=添加
//檢測項(xiàng)目中已過時(shí)API
allprojects {
? ? gradle.projectsEvaluated {
? ? ? ? tasks.withType(JavaCompile) {
? ? ? ? ? ? options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
? ? ? ? }
? ? }
}????
如果是build.gradle.kts
allprojects {
? ? gradle.projectsEvaluated {
? ? ? ? tasks.withType<JavaCompile>().configureEach {
? ? ? ? ? ? options.compilerArgs.addAll(listOf("-Xlint:unchecked", "-Xlint:deprecation"))
? ? ? ? }
? ? }
}
