Upgrade Gradle and use Android SDK 36

This commit is contained in:
Romain Vimont
2025-10-19 17:02:35 +02:00
parent 3e40b24737
commit eee3f24739
5 changed files with 19 additions and 12 deletions

View File

@@ -226,7 +226,11 @@ public final class Server {
private static void internalMain(String... args) throws Exception {
Thread.setDefaultUncaughtExceptionHandler((t, e) -> {
Thread.UncaughtExceptionHandler defaultHandler = Thread.getDefaultUncaughtExceptionHandler();
Ln.e("Exception on thread " + t, e);
if (defaultHandler != null) {
defaultHandler.uncaughtException(t, e);
}
});
prepareMainLooper();