Question

I have a Galaxy Ace with access to super user and I can not see the contents of the file, I urgently need to access internal database of mobile

enter image description here

What can I do?

Was it helpful?

Solution

You can list all files in the root directory using:

adb shell "run-as com.your.package ls -l"

To copy a file over:

adb shell "run-as com.your.package cat relative/path > /sdcard/some_name" adb pull /sdcard/some_name

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top