Re: [android-developers] Re: How to Track Down Force Closes?

2009-11-30 Thread Wayne Wenthin
I'm thinking of putting flurry in my app. Would it be possible to share your code on how you catch these and trigger flurry? Thanks, Wayne On Thu, Nov 26, 2009 at 5:24 AM, westmeadboy westmead...@yahoo.co.ukwrote: I use a combination of my own default uncaught exception handler and

Re: [android-developers] Re: How to Track Down Force Closes?

2009-11-26 Thread Mark Murphy
rflexor wrote: We have successfully implemented a crash-handler based on Thread.setDefaultUncaughtExceptionHandler(). You just have to make your ExceptionHandling-code fast and robust and must not rely on the availability of any resources. We just write the stacktrace to a file together

[android-developers] Re: How to Track Down Force Closes?

2009-11-26 Thread westmeadboy
I use a combination of my own default uncaught exception handler and flurry's. When an uncaught exception occurs, I grab all the device, firmware and app version etc info and relevant lines from the stacktrace and put them in a Map (max 10 entries, but you can just fire off multiple events) which

[android-developers] Re: How to Track Down Force Closes?

2009-11-25 Thread rflexor
We have successfully implemented a crash-handler based on Thread.setDefaultUncaughtExceptionHandler(). You just have to make your ExceptionHandling-code fast and robust and must not rely on the availability of any resources. We just write the stacktrace to a file together with the versionnumber