In our app, we have two sets of launcher icons, one for recent devices (from API 26), and one for older devices (just showing mdpi here, but we have other dpi folders as well):
The API26 ones use the newer adaptive-icons in a single folder mipmap-anydpi-v26
, while the pre-API26 use images (webp) in several folders: mipmap-hdpi
, mipmap-mdpi
etc.
The API26 set of icons is much better since a single set of icons supports all densities. However, since our app supports devices back to API21, we need the older icons as well.
So what I'm wondering is: Is there any point of having the newer icons mipmap-anydpi-v26, since the older ones in mipmap-*dpi folder would support both newer and older devices?