diff options
| author | Beverly <beverlyt@google.com> | 2020-10-08 09:25:11 -0400 |
|---|---|---|
| committer | Beverly Tai <beverlyt@google.com> | 2020-10-08 15:08:43 +0000 |
| commit | ce1ff14b25ee6301af64771422826b1bddb0da3d (patch) | |
| tree | b6ada56ebb967ba215c8cc25adbd0fb103f3814f /core/java | |
| parent | 5dc9d9725a12e99aeb3f1ad661d1f1d53a5f749e (diff) | |
Add temp flag for lockscreen/aod ui prototyping
Add new Settings.Global.SHOW_NEW_LOCKSCREEN property. When enabled, new
lockscreen & aod UI + transitions will show. This is a temporary flag for the
purposes of protoyping which will be removed before release. Therefore, it should
not be backed up.
To toggle the flag (value = 0 is disabled, value = 1 is enabled):
adb shell settings put global show_new_lockscreen <value>
Test: manual
Bug: 170228350
Change-Id: I3b40b1de9bb80d43218fa1e8661fba47b50e9888
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/provider/Settings.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 87334d5bab49..2a0ef31485b5 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -14530,6 +14530,15 @@ public final class Settings { public static final String SHOW_PEOPLE_SPACE = "show_people_space"; /** + * Whether to show new lockscreen & AOD UI. + * Values are: + * 0: Disabled (default) + * 1: Enabled + * @hide + */ + public static final String SHOW_NEW_LOCKSCREEN = "show_new_lockscreen"; + + /** * Block untrusted touches mode. * * Can be one of: |
