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 as you see next but with no success 
> and can't find anyware an implementation for 'IUncaughtExceptionHandler'.

IUncaughtExceptionHandler is a nested type; it's 
Java.Lang.Thread.IUncaughtExceptionHandler:

        
http://androidapi.xamarin.com/?link=T%3aJava.Lang.Thread.IUncaughtExceptionHandler

Furthermore, you should never implement IJavaObject yourself. Instead, you 
should inherit Java.Lang.Object:

        public class CMUncaughtExceptionHandler : Java.Lang.Object, 
Java.Lang.Thread.IUncaughtExceptionHandler {
                public void UncaughtException(Thread thread, Throwable 
throwable)
                {
                        // ...
                }
        }

 - Jon

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to