Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. 解决办法

今天编译一个之前在家里打包的项目 然后发现公司的电脑编译不过 问题如下

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

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

See https://docs.gradle.org/7.2/userguide/command_line_interface.html#sec:command_line_warnings

 发现是Gradle版本的问题 导致出现的这个问题

根据上面的提示在Terminal里面输入如下指令 

gradlew --warning-mode all

编译后有如下提示

> Configure project :
The RepositoryHandler.jcenter() method has been deprecated. This is scheduled to be removed in Gradle 8.0. JFrog announced JCenter's sunset in February 2021. Use mavenCentral() instead. Consult the upgrading guide for further inform
ation: https://docs.gradle.org/7.2/userguide/upgrading_version_6.html#jcenter_deprecation
        at build_al187h50hbdustpaoood7j9ji$_run_closure1$_closure3$_closure5.doCall(G:\AndroidStudioProject\noaar\mjTest\mj\build.gradle:8)
        (Run with --stacktrace to get the full stack trace of this deprecation warning.)

说的很明白 jcenter()这个函数已经被弃用替换为mavenCentral()函数即可

找到build.gradle文件 原本是

allprojects {
    buildscript {
        repositories {
            jcenter()
            google()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:7.0.4'
        }
    }

    repositories {
        jcenter()
        google()
    }
...
}

修改为如下就行了

allprojects {
    buildscript {
        repositories {
            mavenCentral()
            google()
        }

        dependencies {
            classpath 'com.android.tools.build:gradle:7.0.4'
        }
    }

    repositories {
        mavenCentral()
        google()
    }
...
}

再次编译发现过了

猜你喜欢

转载自blog.csdn.net/qq_41973169/article/details/129079641