-Changed Rx exception handling to swallow undeliverable exceptions by default.

This commit is contained in:
John Zhen Mo 2018-02-21 10:42:54 -08:00
parent d5b167b1b6
commit 76f921e6e6
3 changed files with 3 additions and 3 deletions

View file

@ -61,7 +61,7 @@ public class DebugApp extends App {
@Override
protected boolean isDisposedRxExceptionsReported() {
return PreferenceManager.getDefaultSharedPreferences(this)
.getBoolean(getString(R.string.allow_disposed_exceptions_key), true);
.getBoolean(getString(R.string.allow_disposed_exceptions_key), false);
}
@Override