Parcel Unmarshalling unknown type code

后端 未结 7 1899
忘掉有多难
忘掉有多难 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:33

    I also got this error but I found the problem. I had changed a variable from long to int but forgot to change the following:

    I had parcel.writeLong(number) and then read it back as number=parcel.readInt(). The correct is parcel.writeInt(number).

    0 讨论(0)
提交回复
热议问题