问题描述
我想减小Android Studio项目的大小,以备使用后保存
I want to reduce Android Studio project size to save it for after use
在MS Visual Studio中,我们可以删除* .ipch,*.sdf和Debug文件以减小项目大小
In MS Visual Studio, we can delete *.ipch, *.sdf and Debug files to reduce the project size
我看到app/build/intermediates文件夹确实很大,可以删除此文件夹吗?
I see app/build/intermediates folder is really large, can I delete this folder?
推荐答案
是的,您可以安全地删除 intermediates
文件夹.您甚至可以删除包含 intermediates
的整个 build
文件夹.不过, build
文件夹及其内容将在下次运行/构建项目时重新生成.
Yes, you can safely delete the intermediates
folder. You can even delete the whole build
folder that contains intermediates
.The build
folder and it's contents will be re-generated the next time you run/build your project though.
这篇关于缩小Android Studio项目大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!