diff options
| author | Govinda Wasserman <gwasserman@google.com> | 2020-09-23 17:21:47 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-09-23 17:21:47 +0000 |
| commit | 01c000eff181cd69590c65658cd96b0e4ecefcbb (patch) | |
| tree | 218dabdec67a9003d29d919e639790a293cfe3b8 /core/java | |
| parent | 533f629fee9e5dd8de571fd8683e41f49b718c8b (diff) | |
| parent | 6c6e754f63e49995339bc15d93e32a9dbea135d4 (diff) | |
Merge "Adds Assistant Handles learning state to backed up settings" into rvc-qpr-dev
Diffstat (limited to 'core/java')
| -rwxr-xr-x | core/java/android/provider/Settings.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 8b45ba994d7e..b07dabd4bb39 100755 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -8980,6 +8980,22 @@ public final class Settings { }; /** + * How long Assistant handles have enabled in milliseconds. + * + * @hide + */ + public static final String ASSIST_HANDLES_LEARNING_TIME_ELAPSED_MILLIS = + "reminder_exp_learning_time_elapsed"; + + /** + * How many times the Assistant has been triggered using the touch gesture. + * + * @hide + */ + public static final String ASSIST_HANDLES_LEARNING_EVENT_COUNT = + "reminder_exp_learning_event_count"; + + /** * These entries are considered common between the personal and the managed profile, * since the managed profile doesn't get to change them. */ |
