diff options
| -rwxr-xr-x | core/java/android/provider/Settings.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 7b847ae45df8..323b19d55a0b 100755 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -5253,6 +5253,18 @@ public final class Settings { public static final String DEVICE_PROVISIONED = Global.DEVICE_PROVISIONED; /** + * Indicates whether a DPC has been downloaded during provisioning. + * + * <p>Type: int (0 for false, 1 for true) + * + * <p>If this is true, then any attempts to begin setup again should result in factory reset + * + * @hide + */ + public static final String MANAGED_PROVISIONING_DPC_DOWNLOADED = + "managed_provisioning_dpc_downloaded"; + + /** * Whether the current user has been set up via setup wizard (0 = false, 1 = true) * @hide */ |