gpt4 book ai didi

gradle - 注意 : Recompile with -Xlint:deprecation for details.(已解决)

转载 作者:行者123 更新时间:2023-12-03 04:55:17 25 4
gpt4 key购买 nike

注意:--:-----.java 使用或覆盖已弃用的 API。

注意:使用 -Xlint:deprecation 重新编译以获取详细信息。

最佳答案

要解决这个问题,你需要去 Gradle Scripts 点击 build.gradle
buildscript 之后,您需要添加

gradle.projectsEvaluated {
tasks.withType(JavaCompile){
options.compilerArgs << "-Xlint:deprecation"
}
}

例如 :
  buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath 'com.google.gms:google-services:4.3.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile){
options.compilerArgs << "-Xlint:deprecation"
}
}

allprojects {
repositories {
google()
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

关于gradle - 注意 : Recompile with -Xlint:deprecation for details.(已解决),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61702748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com