Re: [mono-android] Implementing 'UncaughtExceptionHandler'

2012-06-26 Thread PedroC
Sayed, Jon, thanks for your help. to catch all the unhandled exceptions in an Android application what method is more complete, the Java or the .NET implementation ? Does the Java method only catch Java errors ? Thanks again Pedro -- View this message in context: http://mono-for-android.104710

Re: [mono-android] Implementing 'UncaughtExceptionHandler'

2012-06-26 Thread Jonathan Pryor
On Jun 25, 2012, at 7:13 PM, PedroC wrote: > Hello. I'm trying to implement 'UncaughtExceptionHandler' for Monodroid as > seen in the following link: > > http://stackoverflow.com/questions/601503/how-do-i-obtain-crash-data-from-my-android-application > > but with no success. I have tried to code

Re: [mono-android] Implementing 'UncaughtExceptionHandler'

2012-06-26 Thread Sayed Arian Kooshesh
jon, correct my if I'm wrong but that(DefaultUncaughtExceptionHandler) only catches java errors. for uncaught .net errors: AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); use lightly and make sure on different threads you rea

[mono-android] Implementing 'UncaughtExceptionHandler'

2012-06-25 Thread PedroC
Hello I'm trying to implement 'UncaughtExceptionHandler' for Monodroid as seen in the following link: http://stackoverflow.com/questions/601503/how-do-i-obtain-crash-data-from-my-android-application but with no success. I have tried to code as you see next but with no success and can't find an