Android Studio 升级到3.1.2,Gradle插件报错:

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-wrapper.properties 文件,修改 distributionUrl 参数,将其后面修改为低于4.6版本的 Gradle。如:distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

AS3.1.2 Configuration on demand is not supported by the current version of the Android Gradle plugin

解决方法二:

按提示配置将gradle.properties文件中的org.gradle.configureondemand=true修改为:

org.gradle.configureondemand=false但是这样并没有起到作用。

禁用on demand需要两步:

在gradle.properties删除org.gradle.configureondemand

Windows:File > Settings > Build, Execution, Deployment > Compiler,去掉configure on demand的勾选。

AS3.1.2 Configuration on demand is not supported by the current version of the Android Gradle plugin

相关文章: