Convert ICrashHandler to kotlin

This commit is contained in:
Ammar Githam 2021-07-11 21:39:18 +09:00
parent 99af3dffaa
commit 90df6e33b0

View File

@ -1,7 +1,9 @@
package awaisomereport; package awaisomereport
public interface ICrashHandler { interface ICrashHandler {
void uncaughtException(Thread t, fun uncaughtException(
Throwable exception, t: Thread,
Thread.UncaughtExceptionHandler defaultEH); exception: Throwable,
} defaultExceptionHandler: Thread.UncaughtExceptionHandler
)
}