Sunday, November 15, 2015

How to change app icon in android studio?

How to change app icon in android studio?

We have the default icon for every app. But if we want to change the app icon, we need to do the following steps:

Get a 512*512 icon created (in png format). This is the main requirement.

In Android studio, right click on res folder (under app > src > main) and select "New > Image Asset"



Take the default image file folder and push in your new image (in that location).
Select the new image in the "Image File"option.
Click next and click finish.
You can also check the AndroidManifest.xml file if the "android:icon" value has changed or not.
You can also change the icon name there.

Your new icon will get reflected in the next code build.

No comments:

Post a Comment