Is there a way to avoid having multiple sets of drawables per resolution? I have close to 50 images (simple icons mostly, not using anything needing 9-patch), seems like a lot of redundant work to resize all 50 in Photoshop, also considering the rework if I have to change some of the icons in the future.
I understand the need for adjusting to multiple densities, but is there any way to avoid it lets say just by providing a high quality image and then enforcing the size as DP/DIP?
Also I see that my Android project has just a 'Drawable' folder in addition to *hdpi/mdpi/ldpi, what are the implications if I just place all my image resources to that folder instead of resolution specific? (assuming that I'm ok with my images being resized by the device)