Not really.
I assume that you have a dependency on project A from B.
When you create your main project in Eclipse, the resources will not be built and the Android console will display an error message: "... error: Attribute "icon" has already been defined" .
In fact, you have two ways:
- remove dependency on project A to B
- OR change the attribute name of a project
Also, if you are creating a project using Gradle, you can use this article that explains how to combine resources.
source share