I have built an app using (Peter Doyle's slight variant of) the Android support/compatibility library (v4, revision 7) to put together an Activity that uses both Fragments and Google Maps. I have tested the app on a Samsung Galaxy Nexus (Ice Cream Sandwich), Samsung Galaxy S II (Ice Cream Sandwich), HTC Desire HD (Gingerbread), HTC Wildfire S (Gingerbread) and the emulators. The app runs fine on these devices. No problem. However, I have published the app and am seeing different kinds of error reports caused by this library on various phones, particularly when the Activity is resumed (i.e. it seems the Activity which has the Fragments can't resume itself on some phones without force closing). Below I've pasted some trimmed stack traces to serve as example. Really irritated by this because I can't replicate it on the devices I have. Anyone else experienced similar errors in their development and have any idea what might be bringing them about?
RuntimeException:
java.lang.RuntimeException:
__Unable to start activity...
java.lang.IllegalStateException:
__The specified child already has a parent.
__You must call removeView() on the child's parent first.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1713)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1738)
at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:3024)
...
Caused by: java.lang.IllegalStateException:
__The specified child already has a parent.
__You must call removeView() on the child's parent first.
at android.view.ViewGroup.addViewInner(ViewGroup.java:1976)
at android.view.ViewGroup.addView(ViewGroup.java:1871)
...
IllegalStateException
java.lang.IllegalStateException:
__Can not perform this action after onSaveInstanceState
at android.support.v4.app.FragmentManagerImpl.checkStateLoss(Unknown Source)
at android.support.v4.app.FragmentManagerImpl.beginTransaction(Unknown Source)
...
IllegalStateException
java.lang.IllegalStateException:
__Fragment cw{4067d550} not attached to Activity
...
RuntimeException
java.lang.RuntimeException:
__Unable to resume activity...
java.lang.NullPointerException
at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2124)
at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2139)
...