Tags
icon
Asked 3 years ago
17 Nov 2020
Views 482
kord

kord posted

How to change icon of the app in android studio ?

i want to change icon of the app at android studio , but dont know how to do it ?
jaman

jaman
answered Nov 30 '-1 00:00

go to
you need to upload the icon file at app -> res-> mipmap at project strcture at android studio
and Go to app -> manifests
open AndroidManifest.xml file.


android:icon=”@mipmap/ic_launcher“


Here put your icon name instead of the ic_launcher.
and debug and run the application, you will see the change
Post Answer