--- android/TrainInfo/src/dk/thoerup/traininfo/WelcomeScreen.java 2012/03/06 16:58:13 1713 +++ android/TrainInfo/src/dk/thoerup/traininfo/WelcomeScreen.java 2012/03/07 09:12:01 1714 @@ -70,8 +70,13 @@ Button aboutButton = (Button) findViewById(R.id.about); aboutButton.setOnClickListener( new AboutListener() ); - - ExceptionHandler.register(this, "http://t-hoerup.dk/android/trace.php"); + + //Got stacktraces / reports that the register thing sometimes crashes + try { + ExceptionHandler.register(this, "http://t-hoerup.dk/android/trace.php"); + } catch (Exception e) { + Log.e("TrainInfo", "Error registering exception handler", e); + } CheckUpdates update = new CheckUpdates(); update.checkForUpdates(this, "http://t-hoerup.dk/android/traininfo/version.txt", "TrainInfo DK", null);