I'm trying to solve TransactionTooLargeExeption
described in What to do on TransactionTooLargeException
We are not using onSaveInstanceState
in any siginificant way.
We are passing extra data when starting intent which is about 10-20k of data.
And app crashes after opening the activity about 30 times.
I'm speculating the extra data stacks up and crashes app, and thinking of doing getIntent().removeExtra("data")
after I get the extra data in the receiving activity.
Is this usual to having to remove the received intent?