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>
Post a Comment for "Android App No Launch Icon"