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
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).
parcel.writeLong(number)
number=parcel.readInt()
parcel.writeInt(number)