You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2021. It is now read-only.
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.abc.def/md5ea6488e8d8969ddbe6a66757fced9df6.MainActivity}: java.lang.RuntimeException: Parcel android.os.Parcel@1af170f6: Unmarshalling unknown type code 2131492966 at offset 276 at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2378) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2440) at android.app.ActivityThread.access$800(ActivityThread.java:162) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1348) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5422) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:914) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:707) Caused by: java.lang.RuntimeException: Parcel android.os.Parcel@1af170f6: Unmarshalling unknown type code 2131492966 at offset 276 at android.os.Parcel.readValue(Parcel.java:2228) at android.os.Parcel.readSparseArrayInternal(Parcel.java:2546) at android.os.Parcel.readSparseArray(Parcel.java:1874) at android.os.Parcel.readValue(Parcel.java:2209) at android.os.Parcel.readArrayMapInternal(Parcel.java:2485) at android.os.BaseBundle.unparcel(BaseBundle.java:221) at android.os.Bundle.getSparseParcelableArray(Bundle.java:822) at com.android.internal.policy.impl.PhoneWindow.restoreHierarchyState(PhoneWindow.java:2063) at android.app.Activity.onRestoreInstanceState(Activity.java:1052) at android.app.Activity.performRestoreInstanceState(Activity.java:1007) at android.app.Instrumentation.callActivityOnRestoreInstanceState(Instrumentation.java:1162) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2351) ... 10 more
Since I'm not using the Parcel class in my code anywhere, it must be caused by some 3rd party library. In this case, the only 3rd party library being used is this project.
Also, this will only happen if several applications are running and the offending application has been in the background and is brought back from the background.
Stack trace reported on application crash:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.abc.def/md5ea6488e8d8969ddbe6a66757fced9df6.MainActivity}: java.lang.RuntimeException: Parcel android.os.Parcel@1af170f6: Unmarshalling unknown type code 2131492966 at offset 276 at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2378) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2440) at android.app.ActivityThread.access$800(ActivityThread.java:162) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1348) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5422) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:914) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:707) Caused by: java.lang.RuntimeException: Parcel android.os.Parcel@1af170f6: Unmarshalling unknown type code 2131492966 at offset 276 at android.os.Parcel.readValue(Parcel.java:2228) at android.os.Parcel.readSparseArrayInternal(Parcel.java:2546) at android.os.Parcel.readSparseArray(Parcel.java:1874) at android.os.Parcel.readValue(Parcel.java:2209) at android.os.Parcel.readArrayMapInternal(Parcel.java:2485) at android.os.BaseBundle.unparcel(BaseBundle.java:221) at android.os.Bundle.getSparseParcelableArray(Bundle.java:822) at com.android.internal.policy.impl.PhoneWindow.restoreHierarchyState(PhoneWindow.java:2063) at android.app.Activity.onRestoreInstanceState(Activity.java:1052) at android.app.Activity.performRestoreInstanceState(Activity.java:1007) at android.app.Instrumentation.callActivityOnRestoreInstanceState(Instrumentation.java:1162) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2351) ... 10 moreSince I'm not using the
Parcelclass in my code anywhere, it must be caused by some 3rd party library. In this case, the only 3rd party library being used is this project.Also, this will only happen if several applications are running and the offending application has been in the background and is brought back from the background.
The offending code must be somewhere around here: https://github.com/Cheesebaron/SlidingUpPanel/blob/master/src/SlidingUpPanel/SlidingUpPanelLayout.cs#L902