I am launching activities from the main activity in my app using the call startActivityForResult(intent, ACTIVITY_TYPE), and they are all working but one.
startActivityForResult(intent, ACTIVITY_TYPE)
It also triggers if you have FLAG_ACTIVITY_NEW_TASK in your intent.
FLAG_ACTIVITY_NEW_TASK
Intent intent = new Intent(this, MyActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivityForResult(intent, REQUEST_CODE);