There are other questions about this but I didn’t find a clear answer.
With Android ADT 15.01 I need to create a lib that should just export resources: drawable, xml, etc.
Is it possible to export resources from a lib or not?
what is correct this https://stackoverflow.com/q/1831815/987753 or this https://stackoverflow.com/q/4895227/987753?
If it is possible how do you do it?
In the bin folder of my lib project I found a classes folder with the .class files and a res folder with the drawables. The jar file is almost empty: just 166 bytes.
I managed to fix it adding the res folder to the “java build paths”-“Source tab”.
So one question is: why do I need to do so for a lib if I do not need to do it for a normal application?