How do you change the launcher logo of an app in Android Studio?

Look in the application’s AndroidManifest.xml file for the <application> tag. This application tag has an android:icon attribute, which is usually @drawable/ic_launcher. The value here is the name of the launcher icon file. If the value is @drawable/ic_launcher, then the name of the icon is ic_launcher.png. Find this icon in your resource folders (res/mipmap-mdpi, res/mipmap-hdpi, etc.) and replace it. A note on mipmap resources: … Read more