From 5062435cfceb31b9dbb6022b746e14bae2ed81bf Mon Sep 17 00:00:00 2001 From: Felipe Leme Date: Tue, 8 Dec 2015 16:01:20 -0800 Subject: [PATCH] Changed "Take Bug Report" action to call 'bugreportplus'. 'bugreportplus' is more user-friendly (it shows a system notification with the progress, allow user to cancel, etc...), at the cost of consuming more resources. As such, the "Take Bug Report" UI will be changed to offer the user a combo with these 2 options, but for now it's always going to be 'bugreportplus' BUG: 26034608 Change-Id: Idbb325fe7cd18e487197b2fb79cfc264e9859570 --- src/com/android/settings/BugreportPreference.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/BugreportPreference.java b/src/com/android/settings/BugreportPreference.java index 24af2841935..fc0466fe15f 100644 --- a/src/com/android/settings/BugreportPreference.java +++ b/src/com/android/settings/BugreportPreference.java @@ -37,7 +37,7 @@ public class BugreportPreference extends CustomDialogPreference { @Override protected void onClick(DialogInterface dialog, int which) { if (which == DialogInterface.BUTTON_POSITIVE) { - SystemProperties.set("ctl.start", "bugreport"); + SystemProperties.set("ctl.start", "bugreportplus"); } } }