Skip to main content

Android 12: Quick Settings – alte Wifi und Mobile-Data Buttons wiederherstellen

Die klassichen Wifi und Bluetooth Buttons in den Quick Settings lassen sich in Android 12 via ADB wiederherstellen:

adb shell 'settings put global settings_provider_model false'
adb shell 'settings put secure sysui_qs_tiles "wifi,cell,$(settings get secure sysui_qs_tiles)"'

Rückgängig machen:

adb shell 'settings put global settings_provider_model true'
adb shell 'settings put secure sysui_qs_tiles "internet,$(settings get secure sysui_qs_tiles)"'

Leave a Reply

Your email address will not be published. Required fields are marked *