Resources$NotFoundException: Resource is not a Drawable (color or path)?

I encountered this problem in the recent app I made. In my case, the problem was I put an image in the folder called drawable-v21, which is not available in older android API.

The solution is to put your drawable in drawable-…dpi folders too.

Hope that helps.

Leave a Comment