gpt4 book ai didi

android - 此构建中使用了已弃用的 Gradle 功能,使其与 Gradle 5.0 不兼容

转载 作者:IT老高 更新时间:2023-10-28 13:29:49 25 4
gpt4 key购买 nike

我的 gradle 失败:

..."Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0."

案例描述:

  • 附加到项目代码库的下一个库:

APP/build.gradle

    //(Required) Writing and executing Unit Tests on the JUnit Platform 
testImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0"
// (Optional) If you need "Parameterized Tests"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.2.0"
// (Optional) If you also have JUnit 4-based tests
testImplementation "junit:junit:4.12"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.2.0"

testImplementation "io.mockk:mockk:1.8.5"
  • 更新了 gradle-wrapper.properties

    distributionUrl=https....gradle-4.4-all.zip 到 4.7-all

  • 在所有 gradle 构建成功之后

  • 创建了测试类

    @TestInstance(TestInstance.Lifecycle.PER_CLASS)
    class TestClass {

    @Test
    internal fun testName() {
    Assert.assertEquals(2, 1 + 1)
    }
    }
  • 运行测试并收到 FAILURE 消息。 enter image description here

  • 使用命令行参数 ./gradlew --warning-mode=all 运行 Gradle 构建,以查看已弃用的功能到底是什么。 enter image description here

因此,我无法构建应用程序,并且收到了 FAILURE: 消息。

最佳答案

使用命令行参数 --warning-mode=all 运行 Gradle 构建,以查看已弃用的功能到底是什么。

它将通过指向 Gradle 文档的链接为您详细描述发现的问题,以获取如何修复您的构建的说明。

向其中添加 --stacktrace 后,如果警告是由其中一个插件中的过时代码而不是您的构建脚本触发的,您还可以查明警告的来源。

关于android - 此构建中使用了已弃用的 Gradle 功能,使其与 Gradle 5.0 不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51610420/

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