I recently installed another Android SDK for Android Studio, SDK version 4.4 (API level 19) and after using it with my project I added a set of mipmap folders to the res project folder ( res/mipmap ).
I do not understand why and how to use them.
I read another question about this here on SO .
The answer to it said that:
The mipmap folders are intended only for hosting application icons. Any other disposable assets that you use must be placed in the appropriate as before.
According to this google blog blog :
It is best to place the icons of your applications in the mipmap folders - (and not in folders with the ability to draw), since they are used at a resolution different from the current density of devices.
I still do not understand the reason for this. Why can't we just put application icons in res/drawable ?
In addition, if only the application icon should be placed in the mipmap folder, how can I create other available resources and put them in drawable folders using the Studio Studio Apple setup wizard? (Right-click access in the project by selecting New> Image Attribute )
android android-drawable android-4.4-kitkat mipmaps
Daniel Kvist
source share