Error:Execution failed for task ':app:clean'. > Unable to delete directory: ***/app/build/generated/***
第一次从svn拉下来的工程,在clean的时候会出现
Error:Execution failed for task ':app:clean'. > Unable to delete directory: ***/app/build/generated/***
网上有不同的方案都无法解决这个问题,可能出现的情况会有很多不同
我查看了是文件权限不够,必须要root账户才能操作,我的解决方案是增加文件权限
sudo chmod -R 777 *
问题解决