I'm almost done the functionality portion of the app I'm making. It's a grade tracking service that has 3 data classes. They are Class, Type(which is like class breakdown), and assignments. Class has an arraylist of types, and type has an arraylist of assignments.
All of these classes implement parcelable, but I'm not sure that's going to help.
I need to be able to write all of the data contained inside of these objects (Eg. name, credits, percentages, grades, etc) to internal storage. What is the best way to go about this? I've tried looking on stackoverflow and could not find a clear cut answer to what I'm working with.