Pull database from Genymotion emulator

1.9k Views Asked by At

I am using Windows7 and want to extract/pull the application database to the local windows machine's folder.

I have searched through internet and found the adb command as below :

adb shell su 0 cp /data/data/<package.name>/databases/<database.name> /mnt/shared/

I have tried the same by creating shared folder for the Virtual box.

But getting error is like : read-only file system

I have also check that read-only is disabled.

Please I need help.

Screenshots : enter image description here

enter image description here

2

There are 2 best solutions below

1
On

As your phone under Genymotion is rooted, you can go in the DDMS of Eclipse.

Then, Click on the tab file explorer.

Then go to folder /data/data/<your.package.name>/ then pull the file from the path in which you saved your database.

0
On

I'm not sure for Windows but on Mac you just call

adb pull /data/data/<package.name>/database/<database.name> <local.file.path>