I'm working with Android Studio 1.1 Preview 1. I noticed that when I create a new project I'm getting the following hierarchy:
Mipmap folders for different DPIs, no more different DPIs drawable folders.
Should I put all my resources in the mipmap …
Since Android 4.3 (Jelly Bean) we can now make use of the res/mipmap folders to store "mipmap" images.
For example, Chrome for Android stores its icons in these folders instead of the more normal res/drawable folders.
How are these …
I Changed my application launcher icon using android studio 3.0.1
File -> Image Asset
In Android version 8.1 icon looks like below image
my AndroidManifest details
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
…