I have been confused for quite a long time.
before build tool v21.0.0, the packaged apk contains the drawable folder structure as below:
res/drawable-hdpi
res/drawable-ldpi
res/drawable-mdpi
res/drawable-hdpi
However, things changed since v21.0.0, the unzip folder structure comes with suffix:
res/drawable-hdpi-v4
res/drawable-ldpi-v4
res/drawable-mdpi-v4
res/drawable-hdpi-v4
My questions are:
- Why added v4 suffix to the drawable folders by default? In current days, the apps are normally build on a much higher version of API. I don't feel like it is necessary to add the v4 qualifier.
- Why since v21.0.0? I have gone through almost all the version of build tools and this only happens since v21.0.0.
- Will there be another qualifiers like v6, v9 or etc in the future?
Thank you so much in advance.