I have looked all over the net, and couldn't find why my Icon isn't show up on my Android wallpaper (neither on a virtual device). The App starts and runs just fine when starting, but when I stop it (hitting the 'Back' or 'Home'buttons), I cannot find the icon that starts it by itself. My Manifest is as follow:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.maasrot.boaz"
android:versionCode="4"
android:versionName="1.2" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.maasrot.boaz.splashScreen"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter android:label="@string/app_name" >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.maasrot.boaz.MainActivity"
android:label="@string/app_name"
android:parentActivityName="com.maasrot.boaz.MainActivity"
android:screenOrientation="portrait" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.maasrot.boaz.MainActivity" />
</activity>
</application>
</manifest>
Any idea why ? I do have the MAIN and LAUNCHER, as all other posts say. Thanks!