A
Android Question
Guest
I can't enable or disable airplane mode using any of the toggles in android.
Clicking the button or toggling the switch in the settings doesn't do anything.
The only way I've found to enable and disable airplane mode is through the adb shell:
ON: settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
OFF: settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false
Clicking the button or toggling the switch in the settings doesn't do anything.
The only way I've found to enable and disable airplane mode is through the adb shell:
ON: settings put global airplane_mode_on 1; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true
OFF: settings put global airplane_mode_on 0; am broadcast -a android.intent.action.AIRPLANE_MODE --ez state false