Android Studio 生成了数百个重复的“2”文件

Android Studio generating hundreds of duplicate " 2" files

有时,我看到我的整个构建工件目录中填充了名称都包含“2”的重复文件。

./testapp/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background 2.png
./testapp/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background 2.png
./testapp/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background 2.png
./testapp/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background 2.png
./testapp/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background 2.xml
./testapp/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background 2.png
./testapp/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background 2.png
./testapp/build/generated/source/buildConfig/debug/org/efalk/testapp/BuildConfig 2.java
./testapp/build/intermediates/symbol_list_with_package_name/debug/package-aware-r 2.txt
...

这些看起来像是 iCloud 在同步期间无法解决文件版本差异时生成的文件类型,我的工作目录 存储在 iCloud 中的 ($HOME/Documents/Android/) 但我没有做任何应该导致文件不同步的事情。

这会导致我的构建失败并出现关于“BuildConfig 2.java”的投诉。

除了将我的项目移出 iCloud 之外,还有什么我应该做的吗?

将我的开发文件移出 iCloud 对我有用。