package eu.faircode.netguard; /* This file is part of NetGuard. NetGuard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. NetGuard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with NetGuard. If not, see . Copyright 2015-2016 by Marcel Bokhorst (M66B) */ import android.app.Application; import android.util.Log; public class ApplicationEx extends Application { private static final String TAG = "NetGuard.App"; private Thread.UncaughtExceptionHandler mPrevHandler; @Override public void onCreate() { super.onCreate(); Log.i(TAG, "Create version=" + Util.getSelfVersionName(this)); mPrevHandler = Thread.getDefaultUncaughtExceptionHandler(); Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() { @Override public void uncaughtException(Thread thread, Throwable ex) { Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex)); Util.sendCrashReport(ex, ApplicationEx.this); if (mPrevHandler != null) mPrevHandler.uncaughtException(thread, ex); } }); } }