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:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.SiteTools.convertme"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/launch_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
I have tried renaming the icons but it hasn’t helped, I have tested on two devices and neither get the launch icon.
I use eclipse.
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: