I'm having this problem since I installed the new SDKs. I've read about this happening when I try to link the same class to the build twice.
But here is the peculiar thing about it:
- I have an Android library project that includes a class folder on the build path.
- I have this library project included in one of my regular Android projects.
- I have to include the class folder in this regular project as well to make it build.
This when the error occurs. But when I do either of the following:
- Remove the class folder from the library project: The library project won't build, so the regular project won't either.
- Remove the class folder from the regular project: The library project builds, but the regular project won't because it misses the class files (?!).
I seem to be stuck in some unsolvable paradigm here. Maybe there are build rules to circumvent this?
Any help would be greatly appreciated!