gradle编译失败问题总结

一、cache.properties系统找不到指定的文件

系统报错日志如下:

Error:C:\Users\userName\.gradle\caches\2.14.1\scripts-remapped\asLocalRepo586_648v4afj9bfq1voe5ede5smuy\28yfcigw48jri4yqy95uqxpxq\cp_init57408229\cache.properties (系统找不到指定的文件。)

解决方法:
1)进入C:\Users\userName.gradle\caches\2.14.1路径
2)备份scripts、scripts-remapped文件夹,以防后续出问题
3)删除scripts、scripts-remapped文件夹
4)同步工程

二、The SDK Build Tools revision (23.0.3) is too low for project ‘:app’. Minimum required is 25.0.

出现上述问题的原因是project的根目录下build.gradle中定义的gradle插件版本过高,当前的定义是2.3.3,将其改到2.2.3可解决该问题。

Error:The SDK Build Tools revision (23.0.3) is too low for project ':app'. Minimum required is 25.0.

但是有时候确实需要使用最新的gradle插件版本,如为了体验kotlin、ReactNative等最新特性。这个时候就需要提升buildToolsVersion或者gradle-wrapper.properties的版本信息

三、Error:Failed to complete Gradle execution.

当前使用Android Studio 3.0,同时配置了根目录build.gradle中gradle插件版本为2.3.0,gradle-wrapper.properties中版本为gradle-3.3-all.zip。出现该问题

Error:Failed to complete Gradle execution.

Cause:
The version of Gradle you are using (3.3) does not support the forTasks() method on BuildActionExecuter. Support for this is available in Gradle 3.5 and all later versions.

解决方案:更改gradle-wrapper.properties中的gradle版本下载信息。
build.gradle中指定的gradle插件版本和gradle-wrapper.properties中指定的gradle版本信息有一定关系,版本需要相匹配,否则也会引入编译问题。

#Mon Dec 28 10:00:20 PST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-milestone-1-all.zip
    原文作者:zizi192
    原文地址: https://www.jianshu.com/p/0a89bb3e322a
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞