Android - adb 명령어로 settings value 확인, 변경

adb 명령어로 settings value를 확인하거나 변경하는 방법을 소개합니다.

Settings value 확인 : adb shell settings get

Settings value는 system, global, secure 영역으로 분리되어있습니다. 각각의 영역에 있는 value를 아래와 같은 명령어로 확인할 수 있습니다.

# system
$ adb shell settings get system pointer_location
null

# global
$ adb shell settings get global device_provisioned
1

# secure
$ adb shell settings get secure user_setup_complete
1

Settings value 변경 : adb shell settings put

settings put system <key> <value>처럼 settings value를 변경할 수 있습니다.

$ adb shell settings put system pointer_location 1

# global
$ adb shell settings put global device_provisioned 1

# secure
$ adb shell settings put secure user_setup_complete 1

secure의 settings value는 권한 문제로 변경이 안될 수 있습니다.

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha