I continuously keep receiving some crash logs in crashlytics which I am not able to simulate.
The error:
Fatal Exception: java.lang.RuntimeException
android.os.TransactionTooLargeException: data parcel size 998980 bytes
What have I tried:
I have get rid of all the intents where I was passing some large data, now I just save those in DB and retrieve in another activity, just few intents that uses bundle remains but those does not contains large data.
How can I further understand from where that crash comes and in case try to fix it?
<code>Fatal Exception: java.lang.RuntimeException: android.os.TransactionTooLargeException: data parcel size 998980 bytes
at android.app.servertransaction.PendingTransactionActions$StopInfo.run(PendingTransactionActions.java:161)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7888)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:981)
</code>
<code>Fatal Exception: java.lang.RuntimeException: android.os.TransactionTooLargeException: data parcel size 998980 bytes
at android.app.servertransaction.PendingTransactionActions$StopInfo.run(PendingTransactionActions.java:161)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7888)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:981)
</code>
Fatal Exception: java.lang.RuntimeException: android.os.TransactionTooLargeException: data parcel size 998980 bytes
at android.app.servertransaction.PendingTransactionActions$StopInfo.run(PendingTransactionActions.java:161)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7888)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:981)
Full logs file can be found here.