Do I understand this correctly:
All android devices fall in one of these 4 density buckets: ldpi, mdpi, hdpi, xhdpi.
So, if a drawable resource is provided for each of these for densities (a drawable or with the same name exists in each of these folders), then it is not necessary to provide a drawable with the same name in /res/drawable or /res/drawable-nodpi.
Is my understanfing correct?
So, the only reason, why it makes sense to provide that same resource in /res/drawable would be, to make the app more future-proof, in case a new density bucket is defined for Android OS?