Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions core/java/android/provider/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -4934,6 +4934,18 @@ public static boolean putFloatForUser(ContentResolver cr, String name, float val
@Deprecated
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
Expand Down