通过Gradle自带参数:
在 Gradle 官方中曾经有一个BUG,就是说Android-Studio无法成功更改缓存的BUG,后来官方给的答案就是采用 Gradle 自己的命令行进行更改。
在Gradle的命令行中有:-g 和 –gradle-user-home 这两个命令的作用一样,你可以通过这两个命令中的一个来进行缓存文件夹的配置:
linux
gradle -g D:/Cache/.gradle -d
gradle --gradle-user-home=D:/Cache/.gradle -d
windows
gradlew -g D:/Cache/.gradle -d
gradlew --gradle-user-home=D:/Cache/.gradle -d
修改.AndroidStudio* 目录
进入到as安装目录下:
D:\program files\Android\Android Studio\bin
找到 idea.properties文件。修改文件:
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config
folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.config.path=${user.home}/.AndroidStudio/config
idea.config.path=D:/gradleCache/.AndroidStudio/config
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system
folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.system.path=${user.home}/.AndroidStudio/system
idea.system.path=D:/gradleCache/.AndroidStudio/system