Is it possible for an Android app's savedInstanceState to be persisted across an app update?
Take the following situation for example:
- I have a Parcelable model that gets written in onSaveInstanceState
- App updates, the structure of that Parcelable model changes in the new version
- App crashes on next open because the saved state of the Parcelable does not match the new model
I should think (hope) this could never happen, as it doesn't make any sense. Just want to be sure this is entirely impossible (as I can't seem to find any documentation that explicitly describes this situation).