gpt4 book ai didi

android - 如何在 Android Studio 上执行 "Recompile with -Xlint:unchecked for details"?

转载 作者:行者123 更新时间:2023-12-04 10:04:40 24 4
gpt4 key购买 nike

我正在 Android Studio 上使用 Flutter 开发应用程序。

我见过这样的警告,但我不知道如何运行 Recompile with -Xlint:unchecked for details专门在 Android Studio 上。你能给我一些想法吗?

Warnings

我检查过的页面(但我认为它们与我的情况有点不同):

  • Recompile with -Xlint : unchecked for details
  • Deprecated compiling error
  • How to show the compile error's details on Android Studio?
  • 最佳答案

    在您的项目级别 build.gradle 文件中添加此内容并再次构建应用程序

    allprojects {
    repositories {
    google()
    jcenter()
    }

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


    }
    它将显示弃用警告。将它们升级到最新版本。希望这能解决您的问题

    关于android - 如何在 Android Studio 上执行 "Recompile with -Xlint:unchecked for details"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61648306/

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