Don't do the developer options countdown for secondary users.

Bug: 7469031
Change-Id: I794cb8b67a9221cc4fcd2dd6208777648c818fe0
This commit is contained in:
Amith Yamasani
2012-12-07 14:18:28 -08:00
parent 96e08d1961
commit b02b26e3cb

View File

@@ -174,6 +174,9 @@ public class DeviceInfoSettings extends SettingsPreferenceFragment {
} }
} }
} else if (preference.getKey().equals(KEY_BUILD_NUMBER)) { } else if (preference.getKey().equals(KEY_BUILD_NUMBER)) {
// Don't enable developer options for secondary users.
if (UserHandle.myUserId() != UserHandle.USER_OWNER) return true;
if (mDevHitCountdown > 0) { if (mDevHitCountdown > 0) {
mDevHitCountdown--; mDevHitCountdown--;
if (mDevHitCountdown == 0) { if (mDevHitCountdown == 0) {