so I am getting this in logcat:
java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = com.resources.student_list
For me this was resolved by making the variable withing the class transient.
Code before:
public class UserLocation implements Serializable {
public Location lastKnownLocation;
public UserLocation() {}
}
code after
public class UserLocation implements Serializable {
public transient Location lastKnownLocation;
public UserLocation() {}
}