diff options
| author | 2018-05-01 18:56:54 +0000 | |
|---|---|---|
| committer | 2018-05-01 18:56:54 +0000 | |
| commit | 1fc69c5eda0e512debf9b0ce52166f699f4bb11e (patch) | |
| tree | 3b9658c8b6c98f0deaeba5700b27aabbac8f927c | |
| parent | 3e169cac13946a663e5a35aa265631aa61dfaf2a (diff) | |
| parent | 43bda82c1088c00d23c152be5b3b7c82b3a4374a (diff) | |
Merge "Add personalization state paused constant" into pi-dev
| -rw-r--r-- | core/java/android/provider/Settings.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index fdae19157569..9e56d1425da6 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -1785,6 +1785,12 @@ public final class Settings { public static final int USER_SETUP_PERSONALIZATION_STARTED = 1; /** + * User has snoozed personalization and will complete it later. + * @hide + */ + public static final int USER_SETUP_PERSONALIZATION_PAUSED = 2; + + /** * User has completed setup personalization. * @hide */ @@ -1795,6 +1801,7 @@ public final class Settings { @IntDef({ USER_SETUP_PERSONALIZATION_NOT_STARTED, USER_SETUP_PERSONALIZATION_STARTED, + USER_SETUP_PERSONALIZATION_PAUSED, USER_SETUP_PERSONALIZATION_COMPLETE }) public @interface UserSetupPersonalization {} |