2021-03-25 21:57:15 +00:00
|
|
|
# settings
|
|
|
|
|
|
|
|
> Get information about the Android OS.
|
2021-03-31 11:48:28 +01:00
|
|
|
> More information: <https://adbinstaller.com/commands/adb-shell-settings-5b670d5ee7958178a2955536>.
|
2021-03-25 21:57:15 +00:00
|
|
|
|
2024-01-31 03:55:19 +00:00
|
|
|
- List the settings in the `global` namespace:
|
2021-03-25 21:57:15 +00:00
|
|
|
|
|
|
|
`settings list {{global}}`
|
|
|
|
|
2023-01-03 16:53:22 +00:00
|
|
|
- Get a value of a specific setting:
|
2021-03-25 21:57:15 +00:00
|
|
|
|
|
|
|
`settings get {{global}} {{airplane_mode_on}}`
|
|
|
|
|
2023-01-03 16:53:22 +00:00
|
|
|
- Set a specific value of a setting:
|
2021-03-25 21:57:15 +00:00
|
|
|
|
|
|
|
`settings put {{system}} {{screen_brightness}} {{42}}`
|
|
|
|
|
|
|
|
- Delete a specific setting:
|
|
|
|
|
|
|
|
`settings delete {{secure}} {{screensaver_enabled}}`
|