Copy sqlite database from device to PC

I have an Android program that stores its information in a sqlite database. Will it be copied to copy this db file to a computer after connecting the device via USB or if a special function is written in the program itself to upload the contents of db to a file in the / sdcard directory?

thanks

+6
source share
1 answer

You can use the adb pull command to read the file from the reinstalled device to your desktop, for example. adb pull /data/data/com.foo.bar/databases/MyDatabase

+9
source

Source: https://habr.com/ru/post/888167/


All Articles