Android - adbコマンドでsettings value確認、変更、

adbコマンドで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

設定値변경 : 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は、権限の問題で変更がならないことがあります。

Related Posts

codechachaCopyright ©2019 codechacha