I cannot see the icon of app created.When i go to to application manager in my device it shows the app installed.But i cannot see any icon for the app in my device. The manifest file clearly states: android:icon="@drawable/ic_launcher" but i cant see any icon.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>