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
This commit is contained in:
Felipe Leme
2015-12-08 16:01:20 -08:00
parent c8c2820770
commit 5062435cfc

View File

@@ -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");
}
}
}