Tell me more ×
Android Enthusiasts Stack Exchange is a question and answer site for enthusiasts and power users of the Android operating system. It's 100% free, no registration required.

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?

share|improve this question
...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 9 '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 9 '12 at 14:20
1  
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 9 '12 at 16:07

2 Answers

take a look at this ! download the android SDK and install it on an IDE (eclipse) :

http://developer.android.com/sdk/index.html

share|improve this answer
2  
This doesn't answer the question, he's asking how to enable/disable it on the phone. – Peanut Apr 6 at 20:19
up vote 25 down vote accepted

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).

share|improve this answer
Update: According to this answer it's possible to delete the settings app data (if you're willing to sacrifice other settings, of course) – ce4 Jan 22 at 21:42
1  
Deleting the settings app data doesn't wipe your settings. To wipe all the settings, you'd need to wipe out the data from the "settings storage" app, though (on my GS3 anyway), it won't let you do that. – Compro01 Jan 22 at 21:54
A factory reset might do it? :P – t0mm13b Jan 22 at 22:00
Sure, but that seems to be a 'little' overkill... – ce4 Jan 23 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.