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

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 以下)
Configuration on demand is not supported by the current version of the Android Gradle plugin since y_第1张图片
解决方法二(两步)
1.更改相关属性
在此文件中添加如下代码

org.gradle.configureondemand=false

Configuration on demand is not supported by the current version of the Android Gradle plugin since y_第2张图片
2.更改 AndroidStudio 相关属性
Configuration on demand is not supported by the current version of the Android Gradle plugin since y_第3张图片
Sync Now重新编译项目,则报错信息消失。

你可能感兴趣的:(Android)