After Google started adding Mipmaps I did not exactly search for why. Even with this addition, it does not prevent anything from using Drawable as it was before.
Before
res/
drawable-mdpi/ic_launcher.png (48x48 pixels)
drawable-hdpi/ic_launcher.png (72x72)
drawable-xhdpi/ic_launcher.png (96x96)
drawable-xxhdpi/ic_launcher.png (144x144)
drawable-xxxhdpi/ic_launcher.png (192x192)
Today
res/
drawable/
mipmap-mdpi/ic_launcher.png (48x48 pixels)
mipmap-hdpi/ic_launcher.png (72x72)
mipmap-xhdpi/ic_launcher.png (96x96)
mipmap-xxhdpi/ic_launcher.png (144x144)
mipmap-xxxhdpi/ic_launcher.png (192x192)
Even seeing some questions, I still do not understand exactly what the real meaning of having these changes was. In old applications they still remain drawable and apparently do not undergo any changes and continue with the same purpose.
In the project
Ididalittleresearchandfoundsomeanswers,butnotquitesosatisfying.
- Drawable or Mipmap ?? What's the difference?
- mipmap drawables for icons
What's the real difference between Mipmap and Drawable ? When should I use Mipmap ? Is there any limitation if I use Drawable ?