If I have an image that I put solely in drawable-xxhdpi
, and no other buckets, does this pose any risk regards shipping to devices that have lower or higher densities?
Historically, we always produced an image variant for each bucket, mdpi
through xxxhdpi
. However recently an image was placed solely in drawable
(which I believe is analogous to drawable-mdpi
) and this understandably produced out-of-memory issues when scaled up on certain devices.
The suggested approach in the answer to that question is to place said image in drawable-xxhdpi
instead of drawable
.
I'm fairly confident that this is acceptable but I would just like to validate that there are no problematic consequences here, including when the app is shipped and provisioned as a bundle (AAB). In particular is there any definitive documentation on the strategy for resolving bucketed resources?