Hello,
I have three activities.
I need the activityOne to be the default (The one that launches first)
activityTwo and activityThree are launched by activityOne
When I deploy the app to a device I see three apps showing. I assume this is because there are three activities. I only want one app showing and the activityOne launching when its selected.
Any ideas?
<activity android:name=".activityOne"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<activity android:name=".activityTwo" android:label="@string/app_name">
</activity>
<activity android:name=".activityThree" android:label="@string/app_name">
</activity>



