Parcel Unmarshalling unknown type code

后端 未结 7 1961
忘掉有多难
忘掉有多难 2020-12-05 10:41

We are getting this error in the Crash reports logged by play store. Cant replicate this in all our testing. Does anyone else have the same problem or solution ? Thing is, w

7条回答
  •  北海茫月
    2020-12-05 11:21

    If you have your own SavedState class, make sure that it is not Proguarded and neither is it's CREATOR static attribute.

    Use something like:

    # Keeping *SavedState and *SavedState#CREATOR
    -keep public final class * extends android.view.AbsSavedState
    -keepclassmembers public final class * extends android.view.AbsSavedState { *; }
    

提交回复
热议问题