Is it safe to delete the .gradle folder in Android Studio?

纵饮孤独 提交于 2019-11-30 17:07:59

Inside the project you can find the .gradle folder.

Inside you can find all settings and other files used by gradle to build the project. You can delete these files without problems. Gradle will recreate it.

Also these file are not committed and Version Control Systems. It means that when you checkout the project these files are not present on the project.

Though its very old thread but recently I recently run into the issue when renamed my android application root name manually. Access Denied error coming on reopening in Android Studio for filehashes.lock under .gradle folder.

So followed below steps and it worked fine. 1. Close Android Studio 2. Delete .gradle folder manually 3. Restart Android Studio On restarting android studio, .gradle folder will be recreated.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!