Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wrong ic_launcher icon in my app

Tags:

android

I'm developing an app for Honeycomb and got this really quirky problem.

I've changed app icon (ic_launcher) in every drawable folder and make sure it is right in the manifest, but instead Ive got an standard "settings" icon in launcher (in app itself it's right).

I've cleaned the project, searched for every single wrong line, no results.

Help would be appreciated :)

like image 974
mglisty Avatar asked Aug 28 '12 10:08

mglisty


2 Answers

Weird problem

Just change @drawable/appicon with your icon in your Manifest.xml like this:

<application android:icon="@drawable/appicon" android:label="@string/app_name"
android:name="com.droid.MyApplication">
...
</application>
like image 129
LuminiousAndroid Avatar answered Oct 26 '22 19:10

LuminiousAndroid


In my case the icon appeared correctly after I rebooted the device. I had followed the above suggestions, though.

like image 30
Piovezan Avatar answered Oct 26 '22 20:10

Piovezan