diff options
author | Zim <zezeozue@google.com> | 2021-06-14 14:18:04 +0100 |
---|---|---|
committer | Zim <zezeozue@google.com> | 2021-06-14 14:18:04 +0100 |
commit | 3d7118d63655935f5f64fa2161a49a8b5b36afa9 (patch) | |
tree | 312826e5d59091edac2e26fd4355a6295e6f472b /src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java | |
parent | 04fdd614b60ccd64c945990201bb780b60a242da (diff) |
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
Diffstat (limited to 'src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java')
-rw-r--r-- | src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java b/src/com/android/settings/development/transcode/TranscodeNotificationPreferenceController.java index e51f8ad5b6..fd5ec5aed3 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 |