Imagine this scenario:
Activity_1: get Activity_2 started with startActivityForResult;
Activity_2: get Activity_3 started with startActivityForResult;
Activity_3: get some crash in someplace, and all activities will be closed (but not the first one "Ativitity_1").
Is it possible to stay in "caller" activity after a crash caused by an UNCAUGHT EXCEPTION ?.
I can "do" this by starting next activity just with startActivity, not with startActivityForResult. But, I need to use startActivityForResult.
PS: All uncaught exceptions are been logged and reported to me to get fixed. I just want to get user's life easier, because sometimes he's in "10th deep" activity, and he will lose all his work just because of it.