Skip to content Skip to sidebar Skip to footer

Android App No Launch Icon

I have put together a simple application and when I am installing the app the icon displays but once it's installed there is no launch icon. Here is my AndroidManifest.xml:

Solution 1:

You need to add an Intent Filter, or else Android won't know what application to launch. Also, your application should include the name of the app. I've included a name below as someActivity, change it to your app as appropriate. This can be done by changing your application to the following:

<applicationandroid:allowBackup="true"android:icon="@drawable/launch_icon"android:label="@string/app_name"android:theme="@style/AppTheme" ><activityandroid:name="someActivity"android:label="@string/app_name" ><intent-filter><actionandroid:name="android.intent.action.MAIN" /><categoryandroid:name="android.intent.category.LAUNCHER" /></intent-filter></activity></application>

Solution 2:

Did you create icons for all resolutions ? . Under your res folder add the appropiate icon size for each folder.

drawable-hdpi drawable-ldpi drawable-mdpi drawable-xhdpi

Your device should pick it up from there according to its resolution

Post a Comment for "Android App No Launch Icon"