I\'ve got a monkey crash whereby
java.lang.IllegalStateException: Failure saving state: FragmentB has target not in fragment manager: FragmentA
at android.s
I had this issue when showing a DialogFrament from another Fragment and using setTargetFragment on the DialogFragment. The issue was solved using getChildFragmentManager() when displaying the DialogFragment.
This caused "Failure saving state - target not in fragment manager" exception to be called.
There were few changes regarding onSaveInstance() lifecycle order between Pre-HoneyComb and post-Honeycomb libraries. Please refer this article for more info:
http://www.androiddesignpatterns.com/2013/08/fragment-transaction-commit-state-loss.html