Android Change App Icon

Generally, while implementing an app in the android studio the default app icons will be available in the app\res\mipmap folder path like as shown below.

 

Android App Default App Icon Path in Android Studio

 

To change the default android app icon, we need to add our image in mipmap folder and need to change the value of android:icon attribute in android manifest file (AndroidManifest.xml) to point to your image like as shown below.

 

Android Change App Icon in Manifest File

 

This is how we can change the android app icon in android studio based on our requirements.