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 information: 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() }...}
再次编译发现过了
来源地址:https://blog.csdn.net/qq_41973169/article/details/129079641
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341