Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Simple Android App with Java Improving Our Code Adding an App Icon

Patan Paul
Patan Paul
1,298 Points

Icon doesn't show, I still get that Android icon..

I did all the steps but I still get that Android Icon on my virtual machine. Any help?

2 Answers

Michael Hall
Michael Hall
18,705 Points

Delete ic_launcher.xml. Probably not the best answer but it works.

This worked for me!

Muhammad Usman
Muhammad Usman
539 Points

It worked for me also.

Naval Kulkarni
Naval Kulkarni
13,782 Points

if you are having 2 folders named as ic_launcher and ic_launcher_round

then you need to go to manifests directory,

inside that you will find AndroidManifest.xml file

in that you will find android:icon = "@mipmap/ic_launcher_round"

just set it to android:icon = "@mipmap/ic_launcher"

and you are good to go.

also i couldnt see the change on NEXUS 6 API 28 device. So i added NEXUS 5X API 15. then i could see my logo changed to the one we want.

you should not go for deleting any file.

let me know if this works for you.

Patan Paul
Patan Paul
1,298 Points

I solved it already, but thanks for the help anyways. Btw, I didn't use your method to solve it