Re: [android-developers] Re: Avoid Failed Binder Transaction

2009-12-08 Thread Hong
I'm having the same problem, and the data I sent across the IPC is very small, like less than 1K. It does not happen immediately, but after the app runs for a while, it will generates "FAILED BINDER TRANSACTION", and keeps showing ANR errors. On Sat, Jul 18, 2009 at 7:24 PM, Don Tran wrote: > >

[android-developers] Re: Avoid Failed Binder Transaction

2009-07-18 Thread Don Tran
There is definitely a bug here and I think it's within Android. I do not get an error stacktrace or anything but my application will just completely freeze and it won't continue on and within a few minutes I will see the Failed Binder Transaction. The exact line it's freezing at is Process proce

[android-developers] Re: Avoid Failed Binder Transaction

2009-07-16 Thread biAji
On Jul 13, 1:47 pm, Don Tran wrote: > My application is getting a failed binder transaction, which causes it > to completely hang,  when I do the following: > > Process process = Runtime.getRuntime().exec(SOME COMMAND); > BufferedReader br = new BufferedReader(new InputStreamReader > (process.g

[android-developers] Re: Avoid Failed Binder Transaction

2009-07-16 Thread biAji
On Jul 13, 1:47 pm, Don Tran wrote: > My application is getting a failed binder transaction, which causes it > to completely hang,  when I do the following: > > Process process = Runtime.getRuntime().exec(SOME COMMAND); > BufferedReader br = new BufferedReader(new InputStreamReader > (process.g

[android-developers] Re: Avoid Failed Binder Transaction

2009-07-13 Thread Dianne Hackborn
I don't believe the code you lists causes any Binder IPC -- that is all just normal Linux stuff. On Sun, Jul 12, 2009 at 10:47 PM, Don Tran wrote: > > My application is getting a failed binder transaction, which causes it > to completely hang, when I do the following: > > Process process = Runt