<activity android:name=".main.MainMenu"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
This activity is launched normally, but when I press BACK button on a real device (not tested on emulator yet) the application is uninstalled. When I try to open it again the following message appears for me:
"Application is not installed on your phone."
I really don't know why. Can you help me?
Thanks


