- Home /
Question by
Curious-George · Nov 14, 2016 at 07:35 AM ·
scripting problemexceptions
AppDomain.UnhandledException on Android
AppDomain.CurrentDomain.UnhandledException += (object sender, UnhandledExceptionEventArgs eventArgs) => {
// ....
}
On iOS, I enable Fast but No Exceptions, and Silent Exit, and then the above callback is triggered as expected. On Android, the callback is never called.
How do I get it to work?
Comment