Reputation: 11999
I am using Android Studio version 1.2.2 and this how my res folder looks:
As you can see there are no drawable folders present. My concern:
Does anyone has clue about it?
Upvotes: 0
Views: 1884
Reputation: 2286
mipmap folders are for placing your app icons in only and in case of drawer folder, any other drawable assets you use should be placed in the relevant drawable folders as before.
You should go through Google Blog which says
"It’s best practice to place your app icons in mipmap- folders (not the drawable- folders) because they are used at resolutions different from the device’s current density."
Just create drawer folder if you want to use selectors.
Upvotes: 4
Reputation: 1971
if you are building different versions of your app for different densities, you should know about the "mipmap" resource directory. This is exactly like "drawable" resources, except it does not participate in density stripping when creating the different apk targets.
But if you want to use selectors than you can create a drawable folder..
Upvotes: 0