I find a bunch of tutorial of serialize vs Parcelable etc. But I have this question : I have an object that implements Parcelable because I have to pass it through IPC. But this object should also be stored in a raw way in a db.
Is there a possibility to use the implementation form Parcelable to serialize it in a compatible way ? (I know marshallization, but as Android doc says : " [it] does not attempt to maintain compatibility with data created in different versions of the platform. ")
Note : I don't need any kind of reflection, I just would like to re-use the code from the Parcelable