錯誤日志:Parcelable protocol requires a Parcelable.Creator object called CREATOR on class com.example.*.model.c
出現(xiàn)原因:實現(xiàn)了 Parcelable的實體類被混淆了,java找不到它
解決方法:proguard-rules.pro中添加如下代碼:
-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}