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?

Était-ce utile?

La 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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top