Recognizing a Launcher ANR

Change-Id: Ib26df7b6e9f9e6b85f93d2aa2a4a0204430e304f
This commit is contained in:
vadimt 2020-01-23 15:19:46 -08:00
parent 8cf7b03cad
commit daed318930
1 changed files with 8 additions and 0 deletions

View File

@ -53,6 +53,14 @@ class FailureInvestigator {
logSinceTestsStart)) {
return 145935261;
}
} else if (matches("Launcher didn't initialize", exception)) {
if (matches(
"ActivityManager: Reason: executing service com.google.android.apps"
+ ".nexuslauncher/com.android.launcher3.notification"
+ ".NotificationListener",
logSinceTestsStart)) {
return 148238677;
}
}
return 0;