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)
My problem was with the calling activity. Its declaration in the AndroidManifest had the following property:
android:noHistory="true"
Changed it to "false" and now works fine.