From de6ae447b13192de88d3da88d750e49ce9bbafc5 Mon Sep 17 00:00:00 2001 From: Russell Brenner Date: Wed, 26 Sep 2012 20:53:10 -0700 Subject: Add Settings.Secure.USER_SETUP_COMPLETE To be set for each individual user upon completion of setup wizard. This complements Settings.Global.DEVICE_PROVISIONED, which is set upon completion of setup wizard by the primary user. Bug: 7236987 Change-Id: I22f279e3262504f529345bbce30b39c71a41dce7 --- core/java/android/provider/Settings.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'core/java/android/provider') diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 965e488..35b8999 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -3090,6 +3090,12 @@ public final class Settings { public static final String DEVICE_PROVISIONED = Global.DEVICE_PROVISIONED; /** + * Whether the current user has been set up via setup wizard (0 = false, 1 = true) + * @hide + */ + public static final String USER_SETUP_COMPLETE = "user_setup_complete"; + + /** * List of input methods that are currently enabled. This is a string * containing the IDs of all enabled input methods, each ID separated * by ':'. -- cgit v1.1