In my application it contain activity A,B,C,D. Now, I want to enter in to my application with two different entry point. That means i want to enter from activity A as well as activity C. If I give intent filter like:
<intent-filter>
<action android:name="android.intent.action.MAIN"
<category android:name="android.intent.category.LAUNCHER"
<intent-filter>
for both activity A and C two icons will create in application launcher,but both are work same that means if I click any icon it start from beginning, but my requirement is one icon as to start from beginning(Activity A) and other from Activity C.
How to achieve this?