Settings数据在手机系统中的位置
新版本使用xml文件存储,一般位于 /data/system/users/0目录下,该目录的settings_global.xml,settings_secure.xml和settings_system.xml三个xml文件就是SettingsProvider中的数据文件。
获取值
adb shell settings get system [key]
adb shell settings get global [key]
adb shell settings get secure [key]
设置值
adb shell settings put system [key] [value]
adb shell settings put global [key] [value]
adb shell settings put secure [key] [value]
设置日期和时间:
adb shell date 072922313030.00 set
查看时间
adb shell date
获取小时制:
adb shell settings get system time_12_24
查通信:
adb shell dmesg |findstr ext_s
adb shell dmesg |findstr commu