Binder transaction failing in android

10,965

Solution 1

I think that you are over-logging. Or that there is a huge memory leak. Minimize your application and run the android Task Manager. Depending on your android (mobile) device you can cause the system to crash if there is over-logging or big leaks.

Solution 2

During a remote procedure call, the arguments and the return value of the call are transferred as Parcel objects stored in the Binder transaction buffer. If the arguments or the return value are too large to fit in the transaction buffer, then the call will fail and TransactionTooLargeException will be thrown.

refer this link form android developer

Share:
10,965
aTJ
Author by

aTJ

Keeps it simple

Updated on June 28, 2022

Comments

  • aTJ
    aTJ almost 2 years

    Possible Duplicate:
    Failed Binder Transaction when returning camera image

    What are the chances of binder transaction failing in android stack? I have an application which switches thru different activities, but the size of data being exchanged between each activity is very less (less than 20 bytes) which includes no images. In some case, system crashes out with out of memory and in other cases application terminates.

    Please help...I am in a real spot of bother..

  • aTJ
    aTJ about 13 years
    Thanks...Is there any tool available in Android which can find memory leak...?
  • Reno
    Reno about 13 years
    This blog was useful. There are lot of questions asked here on SO about this. Use this query ?
  • aTJ
    aTJ almost 13 years
    Reduced logging to a large extent and I guess it did help