Search This Blog

Saturday, November 25, 2017

View Settings/secure/global data from Android

i was looking for a way to look into the settings.db or other secure db that exist in android , on non rooted device.
i find out this command to View the data :

adb shell content
e.g. - to see all global settings
adb shell content query --uri content://settings/global

adb shell content query --uri content://settings/system
adb shell content query --uri content://settings/secure


there is also a tool - have a look at  adb-export

enjoy
Yaniv Tzanany