Warning: Constant WP_DEBUG_LOG already defined in /data03/virt51751/domeenid/www.glamourrom.eu/htdocs/wp-config.php on line 189
How to unlock Android Developer Settings – GLMR™ Skip to main content

How to unlock Android Developer Settings

By June 1, 2017October 9th, 2017How to

Android Developer Settings

Every Android smartphone and Android tablet contains a hidden set of options called – Android Developer Options.

As the name says it’s meant for the developers originally – people who need additional built-in tools to test and debug software and apps they are writing for Android devices.

There are couple of ways that allows you to log, force GPU rendering, show activities, manage with processes or even enable debugging options (which gives you the best playground to play on).

Android Developer Options also allow you to draw debugging information on screen including layout bounds, updates on GPU views and hardware layers, and other information. It can even allow to make your phone respond faster after removing animation scaling times. Slight note: you can put your phone at risk when enabling the USB debugging, so proceed with caution.

Back in days before the 4.2 update, google had it visible by default, but with this release Google deliberately removed it since this feature is only meant for power users and developers.

This doesn’t affect OEMs as they have this feature by default disabled nonetheless.

There’s a simple method I’m going to show you. First of all there is an easy way to enable the developer settings on Android Phone.

It is still on the phone, so there’s no need to worry. Google hasn’t get rid of the development option menu. But this menu option has been removed from the plain menu view.

Let’s start

Here’s a way to get it back:

 

  1. Go to the settings menu, and scroll down to “About phone.” Tap it.
  2. Scroll down to the bottom again, where you see “Build number.” (Your build number may vary from ours here.)
  3. Tap it seven (7) times. After the third tap, you’ll see a toast menu that says you’re four taps away from being a developer. (Google makes you as a developer with few clicks, eh?) Keep on tapping, and BAM, you’ve got the developer settings back.

Below I added screenshots which will make it more clear.

Android Developer
1
Tap 7 times on the Build number
2
When everything done correctly this option will appear

USB Debugging

What’s so wonderful about that? First of all it allow you to control your phone through the ADB Terminal on PC.

It gives you near endless possibilities. You can push and pull files from the phone. You can make directories, you can pull any kind of information, like device status, battery level etc. The most important thing if you’re a developer. YOU CAN READ LOGS IN LIVE.

Tool I recommend to use is called: Minimal ADB and Fastboot

It is really simple to use as it saves you from the pain to install the whole android tools suite. For me it installed like 30 minutes.

I’m listing here few most used adb commands:

  • adb push (sends files to your phone) — adb push /path/to/local/file /sdcard/path/to/file
  • adb pull (receives files from your phone) — adb pull /path/to/local/file /sdcard/path/to/file
  • adb install (installs application) — adb install c:\nameofyourapk.apk
  • adb shell (begins shell connection with phone, this requires root)
  • adb reboot bootloader (reboots the phone into bootloader/download mode)
  • adb reboot (reboots phone)
  • adb reboot recovery (reboots phone into recovery)

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.