diff --git a/src/com/android/settings/development/DevelopmentSettings.java b/src/com/android/settings/development/DevelopmentSettings.java index 748d4524c05..2d5c70f3fbf 100644 --- a/src/com/android/settings/development/DevelopmentSettings.java +++ b/src/com/android/settings/development/DevelopmentSettings.java @@ -396,7 +396,9 @@ public class DevelopmentSettings extends RestrictedSettingsFragment mBackupManager = IBackupManager.Stub.asInterface( ServiceManager.getService(Context.BACKUP_SERVICE)); mWebViewUpdateService = WebViewFactory.getUpdateService(); - mOemLockManager = (OemLockManager) getSystemService(Context.OEM_LOCK_SERVICE); + if (showEnableOemUnlockPreference(getContext())) { + mOemLockManager = (OemLockManager) getSystemService(Context.OEM_LOCK_SERVICE); + } mTelephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); mUm = (UserManager) getSystemService(Context.USER_SERVICE); @@ -1059,7 +1061,7 @@ public class DevelopmentSettings extends RestrictedSettingsFragment } private static boolean showEnableOemUnlockPreference(Context context) { - return context.getSystemService(Context.OEM_LOCK_SERVICE) != null; + return ServiceManager.getService(Context.OEM_LOCK_SERVICE) != null; } /**