diff options
| author | 2019-08-28 10:17:45 +0100 | |
|---|---|---|
| committer | 2019-09-30 17:50:11 +0100 | |
| commit | 0c01ca878c571e9f2aa77a53d881b0826ccf20bf (patch) | |
| tree | e248403fa953112c9012c092a1046a8aaada50d8 | |
| parent | 74ccee9f2380a3ba7a2a1b6cde63d500be71461b (diff) | |
Turn on API workflow for all bugreports
Test: Interactive, Full and Remote bugreports work as expected
Bug: 137825297
Change-Id: I521745eb8b5b14e267e03b009e898a14d666a902
| -rw-r--r-- | services/core/java/com/android/server/am/ActivityManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/am/ActivityManagerService.java b/services/core/java/com/android/server/am/ActivityManagerService.java index 1cb91d5acbe0..b520900ec16f 100644 --- a/services/core/java/com/android/server/am/ActivityManagerService.java +++ b/services/core/java/com/android/server/am/ActivityManagerService.java @@ -8306,7 +8306,7 @@ public class ActivityManagerService extends IActivityManager.Stub final boolean useApi = FeatureFlagUtils.isEnabled(mContext, FeatureFlagUtils.USE_BUGREPORT_API); - if (useApi && bugreportType == BugreportParams.BUGREPORT_MODE_INTERACTIVE) { + if (useApi) { // Create intent to trigger Bugreport API via Shell Intent triggerShellBugreport = new Intent(); triggerShellBugreport.setAction(INTENT_BUGREPORT_REQUESTED); |