I want to resume activity in below situation,
Activity A calls Activity B Activity B calls Activity C
now i want to go to Activity A but not to create new one use existing instance.
I've tried with Intent.FLAG_ACTIVITY_REORDER_TO_FRONT
but it only reorder and if i press back i'm on Activity C where i don't want to be.
T want to clear Activity B and Activity C while starting Activity A.
please help...