If you have Linux, go into your repository and just install the package adb. In Debian, Ubuntu or Pop!_OS for example, all you need to do is running following command in terminal:
Done.
If, for whatever reason, you want to install that package directly from Google, open this. It is a link directly to the latest ZIP file for download. Follow the instruction in that package.
Check if you have the right USB driver at all. Please visit Googles help for this.
Then you need to download and install adb for Windows or Mac. These links will lead to the latest corresponding ZIP packages. Follow the instruction in that package.
After the installation is done, we need to prepare your phone first.
On phone, access the Developer Options and enable USB Debugging. If you don’t know what I’m talking about, start from step 1, else go on with step 2.
Now connect you phone to your PC with adb via physical USB cable. Call up the command line or terminal on your PC and type:
This first command is merely for checking if everything works as desired. If you do this the first time, your phone will ask you to trust the PC it is connected to while displaying an RSA fingerprint of your PC. Also allow it by tapping OK.
Optionally, you can also check Always allow from this computer. Then it won’t ask you again the next time. After you’ve confirmed that your phone is ready, running the command mentioned above will yield something like this:
It should display the series number of your phone only. Unplug any other devices, if you have multiple devices listed here to keep everything sane and simple.
Now we’re finally ready to explore the Airplane mode setting.
Let’s start by entering the shell of your Android device with the command adb shell
. If successful, it will look like this:
Typically instead of brot
, there will be an abbreviation of your device name. From here, you might try to type:
The command settings get global
is used here to get (read only) the current status of airplane_mode_radios
, which is actually the list of every available radios which will be disabled if Airplane Mode is enabled. The available radios are:
Keyword | Explanation |
---|---|
cell | Cellular radio, which includes GPRS (2G), UMTS (3G), LTE (4G) and 5G. |
wifi | Wireless Fidelity, a radio network following the IEEE-802.11-standard. WiFi is just a subset of WLAN (a radio network without further specifications). Actually, there are other types of radio standards for local radio network too, but since WiFi is practically used everywhere as the WLAN technology, the incorrect assumption of both of them being the same… happened. |
bluetooth | Short-range wireless technology standard. It is mostly used for wireless headset, gaming pads or fitness tracking devices in our everyday life cases. |
nfc | Near Field Communication. Communication protocol between devices over a distance of only 4 cm or less. Works with induction and is relatively slow. Usually used for payment systems or often integrated in identity cards of all sorts for identification, both without contact. |
wimax | Worldwide Interoperability for Microwave Access, a family of wireless broadband communication standard based on the IEEE-Standard 802.16. It is sometimes also counted as one of the 4G technologies. |
To be honest, I didn’t know about WiMAX at all until I started to look it up. If you’re not living in the USA, chances are high that you don’t know about this technology, me neither.
Let’s say, you have some active Bluetooth connections running, be it because of a smartwatch, your headset or a gaming pad. Sometimes you want to turn on Airplane Mode to cut all internet connections to prevent your contacts to constantly disturbing you. But you still want to listen to the music currently running or just prevent your smartwatch to lose connectivity every time. Even if it’s only until you turned on Bluetooth manually again, it can be quite annoying, having to do that Every. Single. Freaking. Time.
The following setting will help you with that:
With this, every time you switch on Airplane Mode, all radios will be turned off except for bluetooth
, since we left out that keyword in the settings. In fact, Airplane Mode won’t touch your Bluetooth setting anymore. Every keyword you left out in above setting, it will be ignored if it is activated.
Just remember to reboot your phone for the settings to actually take effect.