44

I wanted to access the developer options to enable adb access on Android 4.2 but cannot find it.

How can I enable that?

Once I've activated the menu, how can I hide it again?

ce4
  • 14,446
  • 10
  • 60
  • 106
  • 1
    ...and any idea how to hide them again? – pelms Nov 21 '12 at 19:37
  • @pelms You should ask this in a new question. – Flow Dec 09 '12 at 11:53
  • @Flow: Is this really worth its own question? Besides this: Not sure you can do this, at least I haven't found a way to do so using the UI. – ce4 Dec 09 '12 at 14:20
  • 2
    Since asking questions is free, yes. The voting process will then decide if it's a good question. And I would upvote such a question. – Flow Dec 09 '12 at 16:07

1 Answers1

46

Starting with Android 4.2. developer options are hidden by default to clean up the options menu. They're nice for debugging but some overlay options may be very alienating for average users when they're accidentially enabled.

On Android 4.2 and newer, Developer options is hidden by default. To make it available, go to Settings -> About phone and tap Build number seven times. Return to the previous screen to find Developer options.

You see a popup hat reads You are now a developer when it was successful.

Source: http://developer.android.com/tools/device.html

It's not possible to hide it again unless you're root and delete this file:

/data/data/com.android.settings/shared_prefs/development.xml

EDIT: According to this answer it's also possible to just delete the App data of the Settings app (com.android.settings, located at Settings->Apps->All->Settings->Clear data).

ce4
  • 14,446
  • 10
  • 60
  • 106