Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个没有“res”目录的 Android Eclipse 项目。
它只有一个文件是一项通用服务,我不需要这个项目的资源。
那么我怎么能告诉 eclipse 我不需要这个项目的资源。
右键单击您的项目 -> Properties。然后Java Build Path-> Source,选择res条目并单击Remove。
Properties
Java Build Path
Source
res
Remove
假设您没有使用资源文件夹中的任何内容,例如值、布局或图像,您可以删除该文件夹 - 这包括您的应用程序图标。
要删除文件夹,只需右键单击它并删除它并确保它不在您的构建路径中。
但是,您将无法摆脱 gen 文件夹,因为 Android 会动态构建它,因为它是通过 SDK 访问的。