使用Gradle编译时出错(找不到下载的依赖项)

使用Gradle编译时出错(找不到下载的依赖项)

问题描述:

我开发了一个应用生成系统,该系统通过命令行Gradle编译命令来重新生成应用.

I develop an app generation system that is regenerating apps by command line Gradle compilation commands.

在Windows Server 2008中,更新到最新的Gradle版本和Gradle插件版本后,我遇到了问题.

In my Windows Server 2008, I'm facing a problem after updating to the last Gradle version and Gradle plugin version.

编译时出现此错误:

C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\appcompat-v7-25.0.0.aar\e93435c34d5cae8b6677dcef529711a5\res\drawable-xxhdpi-v4\abc_text_select_handle_middle_mtrl_light.png: error: file not found.

C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\appcompat-v7-25.0.0.aar\e93435c34d5cae8b6677dcef529711a5\res\drawable\abc_btn_colored_material.xml: error: file not found.

C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\appcompat-v7-25.0.0.aar\e93435c34d5cae8b6677dcef529711a5\res\drawable-hdpi-v4\abc_textfield_search_default_mtrl_alpha.9.png: error: file not found.

and a lot more of errors like those...

我不确定为什么会出现此错误,因为该文件已正确下载并且位于正确的方向上.

I'm not sure why I'm getting this error, because the file is correctly downloaded and it's correctly located on that exactly direction.

它的路径长度为204个字符,因此应该不会超过NTFS Windows文件系统上255个路径字符的限制.

It has a path length of 204 characters, so supposedly it's not surpassing the limit of 255 path characters on NTFS Windows file system.

是否可以更改Gradle下载其缓存依赖项的位置?是这个问题还是其他原因引起的?

It is possible to change the location where Gradle downloads it's cached dependencies? Is this problem caused by this or by other thing?

最后,我解决了将Windows中的环境变量GRADLE_USER_HOME设置为c:/gradle-cache

finally i solved this setting the environmental variable GRADLE_USER_HOME in windows to c:/gradle-cache

因此,它肯定与文件路径长度有关

so definitively it's related to file path lenght