I\'m having app crash on resume because of Unmarshalling exception. I\'ve checked all the Serializables have constructor with no parameters and even checked all the serializ
In my case it was caused by data size exceeding max limit of that can be put to Parcel which is about 1 MB.
Solution: optimize your Parcelable code to put as less data as possible (e.g. do not put Serializable objects to Parcel)