From 3d7118d63655935f5f64fa2161a49a8b5b36afa9 Mon Sep 17 00:00:00 2001 From: Zim Date: Mon, 14 Jun 2021 14:18:04 +0100 Subject: [PATCH] Turn off transcoding notification by default To aid debugging, we included transcoding progress notifications. We don't intend to launch with the notifications on by default so turn it off now in preparation for Android S launch. The notifications can still be enabled in the developer options with: Settings > System > Developer options > Media transcoding > Show transcoding notifications Test: Manual Bug: 190562454 Change-Id: Icab62cb91fdf22e5308d0c4bbc710b88a51170d3 --- .../transcode/TranscodeNotificationPreferenceController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java b/src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java index e51f8ad5b63..fd5ec5aed3b 100644 --- a/src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java +++ b/src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java @@ -37,7 +37,7 @@ public class TranscodeNotificationPreferenceController extends TogglePreferenceC @Override public boolean isChecked() { - return SystemProperties.getBoolean(TRANSCODE_NOTIFICATION_SYS_PROP_KEY, true); + return SystemProperties.getBoolean(TRANSCODE_NOTIFICATION_SYS_PROP_KEY, false); } @Override