I found the solution that works on Android. It is possible to extract the database file by using adb.
- Connect the phone via USB
- use the adb shell
- type
run-as *mypackage*.*app-name*
- you are in the
/data/data/*mypackage*.*app-name*
folder - cd into the databases folder
- copy the database file (i.e.
cp doggie_database.db /storage/self/primary/Documents
)
Use these 2 articles as reference:
https://denniskubes.com/2012/09/25/read-android-data-folder-without-rooting/
https://blog.shvetsov.com/2013/02/access-android-app-data-without-root.html
CLICK HERE to find out more related problems solutions.