In my Android project I've created an additional source-code folder called src-plugins
. I added it to build.properties
and building the project works fine.
However, now and then my gen
folder won't regenerate and the solution is always to do an Eclipse Project > Clean...
. However, this also removes the deepest sub-folder of src-plugins
-- including all of its files.
Question: Is there a way to fix this?
I'll preemptively answer the most likely comment: I'm not using a subpackage because I need access to package-private class members. But I still feel I need to group these files in a separate folder.