score:1

Accepted answer

you cannot access files on internal storage from ddms on production hardware.

you can try using adb shell run-as to be able to pull the database using the command-line adb client: https://stackoverflow.com/a/8434477/115145

adb shell
run-as com.corp.appname
cat files/myfile.txt > /mnt/sdcard/myfile.txt

Related Query

More Query from same tag