Configuration on demand is not supported by the current version of the Android Gradle plugin since y

港控/mmm° 2023-07-06 08:51 155阅读 0赞
  1. Configuration on demand is not supported by the current version of the Android Gradle plugin since you are using Gradle version 4.6 or above. Suggestion: disable configuration on demand by setting org.gradle.configureondemand=false in your gradle.properties file or use a Gradle version less than 4.6.

意思是说
由于使用你正在使用 Gradle 版本4.6或以上,当前版本的Android的 Gradle 插件不支持按需配置。建议:通过在你的 gradle.properties 文件中设置 org.gradle.configureondemand=false 禁用按需配置,或者使用一个低于4.6版本的 Gradle。

解决方法一:降低 Gradle 版本(4.6 以下)
在这里插入图片描述
解决方法二(两步)
1.更改相关属性
在此文件中添加如下代码

  1. org.gradle.configureondemand=false

在这里插入图片描述
2.更改 AndroidStudio 相关属性
在这里插入图片描述
Sync Now重新编译项目,则报错信息消失。

发表评论

表情:
评论列表 (有 0 条评论,155人围观)

还没有评论,来说两句吧...

相关阅读