Do not report exceptions to Android

This commit is contained in:
M66B 2017-10-27 16:48:14 +02:00
parent 7993b557de
commit 1d27b5723d
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ public class ApplicationEx extends Application {
@Override
public void uncaughtException(Thread thread, Throwable ex) {
Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
if (mPrevHandler != null)
mPrevHandler.uncaughtException(thread, ex);
//if (mPrevHandler != null)
// mPrevHandler.uncaughtException(thread, ex);
}
});
}