avidraghav / MyNotes

📝 A demo todo/notes app which demonstrates the use of MVVM architecture with Test-cases, Navigation Component Library, Room Database, LiveData, Coroutines, Datastore etc.
Apache License 2.0
126 stars 26 forks source link

Parcelable vs Serializable #66

Closed Krish-Parekh closed 2 years ago

Krish-Parekh commented 2 years ago

Shouldn't we use Parcelable instead of Serializable in our TaskEntity; parceable process is much faster than serializable, I was reading about the difference between them and I found this StackOverFlow

avidraghav commented 2 years ago

Yes, definitely. Please Go ahead with the Parcelable implementation.