Skip reporting OOM

This commit is contained in:
M66B 2020-11-14 07:50:24 +01:00
parent 85bceae8d7
commit 36a6c5a7a4
1 changed files with 3 additions and 0 deletions

View File

@ -1192,6 +1192,9 @@ public class Log {
static void unexpectedError(FragmentManager manager, Throwable ex, boolean report) {
Log.e(ex);
if (ex instanceof OutOfMemoryError)
report = false;
Bundle args = new Bundle();
args.putSerializable("ex", ex);
args.putBoolean("report", report);