Loading services/java/com/android/server/am/ActivityManagerService.java +9 −4 Original line number Diff line number Diff line Loading @@ -904,10 +904,15 @@ public final class ActivityManagerService extends ActivityManagerNative null, null, 0, null, null, null, false, false, MY_PID, Process.SYSTEM_UID, 0 /* TODO: Verify */); if (mShowDialogs) { Dialog d = new AppNotRespondingDialog(ActivityManagerService.this, mContext, proc, (ActivityRecord)data.get("activity")); d.show(); proc.anrDialog = d; } else { // Just kill the app if there is no dialog to be shown. killAppAtUsersRequest(proc, null); } } ensureBootCompleted(); Loading Loading
services/java/com/android/server/am/ActivityManagerService.java +9 −4 Original line number Diff line number Diff line Loading @@ -904,10 +904,15 @@ public final class ActivityManagerService extends ActivityManagerNative null, null, 0, null, null, null, false, false, MY_PID, Process.SYSTEM_UID, 0 /* TODO: Verify */); if (mShowDialogs) { Dialog d = new AppNotRespondingDialog(ActivityManagerService.this, mContext, proc, (ActivityRecord)data.get("activity")); d.show(); proc.anrDialog = d; } else { // Just kill the app if there is no dialog to be shown. killAppAtUsersRequest(proc, null); } } ensureBootCompleted(); Loading