Here is my manifest snippet:
<activity android:name=".EntranceView" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity >
<activity android:name=".MainView">
</activity>
The problem is that on application start the .MainView activity launchs, not .EntranceView that is declared as starting activity.