Why do I need to parcel my object even if I just need to send it to another thread of the same task? Actually I need to open an activity that will run even on the same thread (t
In order to pass your custom class object(s) between Activities/Services/etc. using Bundle within Intent, your class must need to implement Parcelable or Serializable.
That's the reason you need to parcel your object before pushing into Bundle