diff --git a/services/core/java/com/android/server/am/AppErrors.java b/services/core/java/com/android/server/am/AppErrors.java index 724f66f51ca26..ba799f2ca3d18 100644 --- a/services/core/java/com/android/server/am/AppErrors.java +++ b/services/core/java/com/android/server/am/AppErrors.java @@ -756,6 +756,9 @@ class AppErrors { } else if (app.killedByAm) { Slog.i(TAG, "App already killed by AM skipping ANR: " + app + " " + annotation); return; + } else if (app.killed) { + Slog.i(TAG, "Skipping died app ANR: " + app + " " + annotation); + return; } // In case we come through here for the same app before completing