diff options
author | Flavio Fiszman <flaviocf@google.com> | 2021-03-12 11:30:51 +0000 |
---|---|---|
committer | Flavio Fiszman <flaviocf@google.com> | 2021-03-17 16:24:37 +0000 |
commit | d5a379653b024aaabe62974ba542ea280abc4455 (patch) | |
tree | 4ef37830b84581f57c7bfb1db3b0e7eb171ff9e3 /packages/SystemUI/src/com/android/systemui/Prefs.java | |
parent | 502bae3d292ed5012144af0db49be4f4ff1041d0 (diff) |
Prompt People tile on marking as priority
Change-Id: I4ee1566762d381b6288e3b19c89db904a5d86d8b
Test: manual
Bug: 182570341
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/Prefs.java')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/Prefs.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/Prefs.java b/packages/SystemUI/src/com/android/systemui/Prefs.java index f210d508907c..f28d1137f3e7 100644 --- a/packages/SystemUI/src/com/android/systemui/Prefs.java +++ b/packages/SystemUI/src/com/android/systemui/Prefs.java @@ -74,7 +74,7 @@ public final class Prefs { Key.HAS_SEEN_ODI_CAPTIONS_TOOLTIP, Key.HAS_SEEN_REVERSE_BOTTOM_SHEET, Key.CONTROLS_STRUCTURE_SWIPE_TOOLTIP_COUNT, - Key.HAS_SEEN_PRIORITY_ONBOARDING + Key.HAS_SEEN_PRIORITY_ONBOARDING_IN_S }) // TODO: annotate these with their types so {@link PrefsCommandLine} can know how to set them public @interface Key { @@ -124,7 +124,7 @@ public final class Prefs { String HAS_SEEN_REVERSE_BOTTOM_SHEET = "HasSeenReverseBottomSheet"; String CONTROLS_STRUCTURE_SWIPE_TOOLTIP_COUNT = "ControlsStructureSwipeTooltipCount"; /** Tracks whether the user has seen the onboarding screen for priority conversations */ - String HAS_SEEN_PRIORITY_ONBOARDING = "HasUserSeenPriorityOnboarding"; + String HAS_SEEN_PRIORITY_ONBOARDING_IN_S = "HasUserSeenPriorityOnboardingInS"; } public static boolean getBoolean(Context context, @Key String key, boolean defaultValue) { |