How to release the data that is in the "date" folder of the Android phone?

1

I am making an app where I create the forms from the database, but nothing is appearing on my phone, I can only see it in AVD, how do I release it?

    
asked by anonymous 14.07.2015 / 23:43

1 answer

1

For debug-mode and rootless applications you can follow the commands to extract the AVD database:

adb shell "run-as com.app chmod 666 /data/data/com.app/databases/data.db"
adb pull /data/data/com.app/databases/data.db

Replace com.app according to the path of your application that you set when creating the project.

References:

link

    
27.09.2015 / 15:20