From 9ff4d709b9310e6559738c549e6eadf3075fa1de Mon Sep 17 00:00:00 2001 From: Jack Yu Date: Fri, 8 Apr 2022 07:59:46 -0700 Subject: [PATCH] Increased the bugreport title maximum length to 100 Increased the bugreport title maximum length from 50 to 100. 50 is too short for most of the anomaly report bugs. Bug: 228359199 Test: Manual Change-Id: I51888fb049092c097756d9add966f19af61059fa --- .../core/java/com/android/server/am/ActivityManagerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/am/ActivityManagerService.java b/services/core/java/com/android/server/am/ActivityManagerService.java index ba1a19906af97..fd9ebbf95ba51 100644 --- a/services/core/java/com/android/server/am/ActivityManagerService.java +++ b/services/core/java/com/android/server/am/ActivityManagerService.java @@ -555,7 +555,7 @@ public class ActivityManagerService extends IActivityManager.Stub // Max character limit for a notification title. If the notification title is larger than this // the notification will not be legible to the user. - private static final int MAX_BUGREPORT_TITLE_SIZE = 50; + private static final int MAX_BUGREPORT_TITLE_SIZE = 100; private static final int MAX_BUGREPORT_DESCRIPTION_SIZE = 150; private static final int NATIVE_DUMP_TIMEOUT_MS =